aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorZufu Liu <unknown>2020-07-15 12:08:11 +1000
committerZufu Liu <unknown>2020-07-15 12:08:11 +1000
commit8aeb0e4b77a0f6905981df5f2d9c4622d55a12fb (patch)
tree91988ba86d2aabf316a1cb7340c0b181f0a02ba6 /include
parent94e723891ade7b0de0c6dc6a3b294e6ce1fea326 (diff)
downloadscintilla-mirror-8aeb0e4b77a0f6905981df5f2d9c4622d55a12fb.tar.gz
Feature [feature-requests:1368]. Add BraceMatchNext API.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.h1
-rw-r--r--include/Scintilla.iface3
2 files changed, 4 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index d3b6ac237..56f153f94 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -685,6 +685,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_BRACEBADLIGHT 2352
#define SCI_BRACEBADLIGHTINDICATOR 2499
#define SCI_BRACEMATCH 2353
+#define SCI_BRACEMATCHNEXT 2369
#define SCI_GETVIEWEOL 2355
#define SCI_SETVIEWEOL 2356
#define SCI_GETDOCPOINTER 2357
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index b8d92da19..a1b0f58aa 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1876,6 +1876,9 @@ fun void BraceBadLightIndicator=2499(bool useSetting, int indicator)
# The maxReStyle must be 0 for now. It may be defined in a future release.
fun position BraceMatch=2353(position pos, int maxReStyle)
+# Similar to BraceMatch, but matching starts at the explicit start position.
+fun position BraceMatchNext=2369(position pos, position startPos)
+
# Are the end of line characters visible?
get bool GetViewEOL=2355(,)