diff options
author | nyamatongwe <devnull@localhost> | 2010-09-24 13:14:40 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-09-24 13:14:40 +1000 |
commit | 27fe93c781719be46a2ca770f33f9cfba9cb054c (patch) | |
tree | cd28473d19ca2523fc24b6c430e65cbe037f7588 /include/Scintilla.iface | |
parent | e612ffd2248bcacfc56bee45f277d110393c7171 (diff) | |
download | scintilla-mirror-27fe93c781719be46a2ca770f33f9cfba9cb054c.tar.gz |
Added SCI_CONTRACTEDFOLDNEXT as a way to find contracted fold headers efficiently.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r-- | include/Scintilla.iface | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 2516b7134..679bce53b 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -304,7 +304,8 @@ fun void MarkerDeleteAll=2045(int markerNumber,) # Get a bit mask of all the markers set on a line. fun int MarkerGet=2046(int line,) -# Find the next line after lineStart that includes a marker in mask. +# Find the next line at or after lineStart that includes a marker in mask. +# Return -1 when no more lines. fun int MarkerNext=2047(int lineStart, int markerMask) # Find the previous line before lineStart that includes a marker in mask. @@ -2090,6 +2091,10 @@ fun void SwapMainAnchorCaret=2607(,) # there may be a need to redraw. fun int ChangeLexerState=2617(position start, position end) +# Find the next line at or after lineStart that is a contracted fold header line. +# Return -1 when no more lines. +fun int ContractedFoldNext=2618(int lineStart,) + # Start notifying the container of all key presses and commands. fun void StartRecord=3001(,) |