From 8b8c7e0e02b585145b42ab95bacfb866b355f26b Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Sat, 9 May 2020 18:04:46 -0400 Subject: Updated to Scintilla 3.20.0. --- core/.buffer.luadoc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'core/.buffer.luadoc') diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc index ba237e25..969c45ac 100644 --- a/core/.buffer.luadoc +++ b/core/.buffer.luadoc @@ -2286,6 +2286,14 @@ function marker_enable_highlight(buffer, enabled) end -- @return number function marker_get(buffer, line) end +--- +-- Returns the handle of the *n*th marker on line number *line*, or `-1` if no +-- such marker exists. +-- @param buffer A buffer. +-- @param line The line number to get markers on. +-- @param n The marker to get the handle of. +function marker_handle_from_line(buffer, line, n) end + --- -- Returns the line number that marker handle *handle*, returned by -- `buffer.marker_add()`, was added to, or `-1` if the line was not found. @@ -2307,6 +2315,14 @@ function marker_line_from_handle(buffer, handle) end -- @return number function marker_next(buffer, line, marker_mask) end +--- +-- Returns the number of the *n*th marker on line number *line*, or `-1` if no +-- such marker exists. +-- @param buffer A buffer. +-- @param line The line number to get markers on. +-- @param n The marker to get the number of. +function marker_number_from_line(buffer, line, n) end + --- -- Returns the last line number, before or on line number *line*, that has had -- all of the markers represented by marker bit-mask *marker_mask* added to it. -- cgit v1.2.3