aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/.buffer.luadoc
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2010-08-18 17:11:24 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2010-08-18 17:11:24 -0400
commitb684993cabf041470cab93d3d71ee76e5360a323 (patch)
tree1a0464b03906850fae4cce87dfa094ab8d7cb3c4 /core/.buffer.luadoc
parent02a7aa860a25332c84180ec21499355bf54f5e88 (diff)
Added LuaDoc for new Scintilla functions; core/.buffer.luadoc
Diffstat (limited to 'core/.buffer.luadoc')
-rw-r--r--core/.buffer.luadoc15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc
index 87f338dc..a8870417 100644
--- a/core/.buffer.luadoc
+++ b/core/.buffer.luadoc
@@ -429,6 +429,9 @@ function buffer:can_redo()
function buffer:can_undo()
--- Cancels any modes such as call tip or autocompletion list display.
function buffer:cancel()
+--- Indicate that the internal state of a lexer has changed over a range and
+-- therefore there may be a need to redraw.
+function buffer:change_lexer_state(start_pos, end_pos)
--- Moves the caret left one character.
function buffer:char_left()
--- Moves the caret left one character, extending the selection.
@@ -490,6 +493,11 @@ function buffer:delete_back()
--- Deletes the selection or the character before the caret. Will not delete the
-- character before at the start of a lone.
function buffer:delete_back_not_line()
+--- Retrieve a '\n' separated list of descriptions of the keyword sets
+-- understood by the current lexer.
+function buffer:describe_key_word_sets()
+--- Describe a property.
+function buffer:describe_property(name)
--- Returns the document line of a display line taking hidden lines into
-- account.
function buffer:doc_line_from_visible()
@@ -726,6 +734,8 @@ function buffer:para_up_extend()
--- Pastes the contents of the clipboard into the document replacing the
-- selection.
function buffer:paste()
+--- For private communication between an application and a known lexer.
+function buffer:private_lexer_call(operation)
--- Returns the x value of the point in the window where a position is shown.
function buffer:point_x_from_position(pos)
--- Returns the y value of the point in the window where a position is shown.
@@ -741,6 +751,11 @@ function buffer:position_from_point(x, y)
--- Returns the position from a point within the window, but return -1 if not
-- close to text.
function buffer:position_from_point_close(x, y)
+--- Retrieve a '\n' separated list of properties understood by the current
+-- lexer.
+function buffer:property_names()
+--- Retrieve the type of a property.
+function buffer:property_type(name)
--- Redoes the next action in the undo history.
function buffer:redo()
--- Registers and XPM image for use in autocompletion lists.