aboutsummaryrefslogtreecommitdiff
path: root/core/.buffer.luadoc
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2011-12-21 11:33:00 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2011-12-21 11:33:00 -0500
commit65ab05aeccd70f5fad99b1a86189e0f2aa76932c (patch)
tree1570d51afc382b508d6d5ac82ee2e36c76768057 /core/.buffer.luadoc
parentd3c52504cae4e07287b0c057f64235726d7067d9 (diff)
downloadtextadept-65ab05aeccd70f5fad99b1a86189e0f2aa76932c.tar.gz
textadept-65ab05aeccd70f5fad99b1a86189e0f2aa76932c.zip
Updated iface to Scintilla 3.0.2.
Diffstat (limited to 'core/.buffer.luadoc')
-rw-r--r--core/.buffer.luadoc11
1 files changed, 9 insertions, 2 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc
index 49ae789a..313ad5d3 100644
--- a/core/.buffer.luadoc
+++ b/core/.buffer.luadoc
@@ -91,7 +91,7 @@ module('buffer')
-- `0xBBGGRR` format. (Write-only)
-- * `call_tip_fore_hlt` [number]: The foreground color for the highlighted part
-- of the call tip in `0xBBGGRR` format. (Write-only)
--- * `call_tip_position` [boolean]: The position of calltip, above or below
+-- * `call_tip_position` [boolean]: The position of calltip, above or below
-- text. By default the calltip is displayed below the text. Setting to `true`
-- will display it above the text.
-- * `call_tip_use_style` [number]: Enable use of
@@ -507,7 +507,7 @@ module('buffer')
-- `255`.
-- * `style_italic` [table]: Table of booleans for italic styles from `0` to
-- `255`.
--- * `style_size` [table]: Table of font sizes for styles from `0` to `255`.
+-- * `style_size` [table]: Table of font sizes for styles from `0` to `255`.
-- Font size is a whole number of points.
-- * `style_size_fractional` [table]: Table of sizes of characters for styles
-- from `0` to `255`. Size is in hundreths of a point and multiplied by 100
@@ -986,6 +986,13 @@ function buffer.copy_range(buffer, start_pos, end_pos) end
function buffer.copy_text(buffer, text) end
---
+-- Count characters between two positions.
+-- @param start_pos
+-- @param end_pos
+-- @return number
+function buffer.count_characters(buffer, start_pos, end_pos) end
+
+---
-- Cut the selection to the clipboard.
-- @param buffer The global buffer.
function buffer.cut(buffer) end