diff options
| author | nyamatongwe <unknown> | 2000-09-04 13:12:01 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2000-09-04 13:12:01 +0000 |
| commit | 90e1b590ae736c53fb37e22ea90c8f07064403e0 (patch) | |
| tree | 105694b92861b678ee50da068da5501fb33758ae /include/Scintilla.iface | |
| parent | 4438c10faf264c4b7cff5c29acabe94cce37e32f (diff) | |
| download | scintilla-mirror-90e1b590ae736c53fb37e22ea90c8f07064403e0.tar.gz | |
Added SCFIND_WORDSTART.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 536ebbd6a..052af92c4 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -557,9 +557,12 @@ set void SetPrintColourMode=2148(int mode,) # Returns the print colour mode. get int GetPrintColourMode=2149(,) -val SCFIND_MATCHCASE=4 -val SCFIND_WHOLEWORD=2 val SCFIND_DOWN=1 +val SCFIND_WHOLEWORD=2 +val SCFIND_MATCHCASE=4 +val SCFIND_WORDSTART=0x00100000 +# SCFIND_REGEXP is not yet implemented. +val SCFIND_REGEXP=0x00200000 # Find some text in the document. fun position FindText=2150(int flags, findtext ft) |
