aboutsummaryrefslogtreecommitdiff
path: root/core/.buffer.luadoc
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2017-06-17 18:09:23 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2017-06-17 18:09:23 -0400
commitc79314c9bd8efc6e521664bf4de182370c436c09 (patch)
tree9ce81d4de67843af7f293c2dc556e9c6e257bcb9 /core/.buffer.luadoc
parentb82ab307b7ee8bcc547aa076c17355ad7bb7ea24 (diff)
downloadtextadept-c79314c9bd8efc6e521664bf4de182370c436c09.tar.gz
textadept-c79314c9bd8efc6e521664bf4de182370c436c09.zip
Effectively updated to Scintilla 3.7.5 with select backports to 3.7.3.
Diffstat (limited to 'core/.buffer.luadoc')
-rw-r--r--core/.buffer.luadoc14
1 files changed, 12 insertions, 2 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc
index dfaa4edf..38896403 100644
--- a/core/.buffer.luadoc
+++ b/core/.buffer.luadoc
@@ -157,6 +157,12 @@
-- The caret line's background alpha value, ranging from `0` (transparent) to
-- `255` (opaque).
-- The default value is `buffer.ALPHA_NOALPHA`, for no alpha.
+-- @field caret_line_frame (number)
+-- The caret line's frame width in pixels.
+-- When non-zero, the line that contains the caret is framed instead of
+-- colored in. The `buffer.caret_line_back` and `buffer.caret_line_back_alpha`
+-- properties apply to the frame.
+-- The default value is `0`.
-- @field caret_line_visible (bool)
-- Color the background of the line that contains the caret a different color.
-- The default value is `false`.
@@ -750,8 +756,7 @@
-- Table of flags that indicate whether or not text is changeable for style
-- numbers from `0` to `255`.
-- The default values are `true`.
--- Currently, read-only styles do not allow the caret into the range of text,
--- but ranges that contain read-only text are deletable.
+-- Read-only styles do not allow the caret into the range of text.
-- @field style_eol_filled (table)
-- Table of flags that indicate whether or not the background colors of styles
-- whose characters occur last on lines extend all the way to the view's right
@@ -2071,6 +2076,11 @@ function line_from_position(buffer, pos) end
function line_length(buffer, line) end
---
+-- Reverses the order of the selected lines.
+-- @param buffer A buffer.
+function line_reverse(buffer) end
+
+---
-- Scrolls the buffer right *columns* columns and down *lines* lines.
-- Negative values are allowed.
-- @param buffer A buffer.