aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authorIain Clarke <unknown>2020-04-08 09:27:43 +1000
committerIain Clarke <unknown>2020-04-08 09:27:43 +1000
commitb8369870e15d4b061ec5d67d0cfbfe04d3a6459f (patch)
tree41276956ec5d67485a560a1218bfa0a9325e11e7 /include/Scintilla.iface
parent4a1cfeae9b35bbb3639c3f48d3bf5ec17a6aa77f (diff)
downloadscintilla-mirror-b8369870e15d4b061ec5d67d0cfbfe04d3a6459f.tar.gz
Feature [feature-requests:1344]. Add methods for iterating through the marker
handles and marker numbers on a line.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 8e52f40f7..6e229bf37 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -156,6 +156,12 @@ fun line MarkerLineFromHandle=2017(int markerHandle,)
# Delete a marker.
fun void MarkerDeleteHandle=2018(int markerHandle,)
+# Retrieve marker handles of a line
+fun int MarkerHandleFromLine=2732(line line, int which)
+
+# Retrieve marker number of a marker handle
+fun int MarkerNumberFromLine=2733(line line, int which)
+
# Is undo history being collected?
get bool GetUndoCollection=2019(,)
@@ -1242,6 +1248,8 @@ set void SetTargetEndVirtualSpace=2730(position space,)
# Get the virtual space of the target end
get position GetTargetEndVirtualSpace=2731(,)
+
+
# Sets both the start and end of the target in one call.
fun void SetTargetRange=2686(position start, position end)