aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-04-10 13:52:17 +0000
committernyamatongwe <unknown>2000-04-10 13:52:17 +0000
commitb8d276f517d68af5d173597c37fb9111c985de80 (patch)
treeb8af678dd9e189e517668330c92aeab3ff5f0115 /doc/ScintillaDoc.html
parentff3e9e7e239217ae5247b1519090a5137e056f80 (diff)
downloadscintilla-mirror-b8d276f517d68af5d173597c37fb9111c985de80.tar.gz
Added get/set of separator character used when setting auto-completion list.
Message for selecting an element of the autocompletion list.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html8
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 6678f3aac..c2ce990df 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -538,12 +538,18 @@ SCI_AUTOCACTIVE
SCI_AUTOCPOSSTART
SCI_AUTOCCOMPLETE
SCI_AUTOCSTOPS(&lt;unused&gt;,char *chars)
+SCI_AUTOCSETSEPARATOR(char separator)
+SCI_AUTOCGETSEPARATOR
+SCI_AUTOCSELECT(&lt;unused&gt;,char *stringtoselect)
</pre>
<p>
Auto completion displays a list box based upon the users typing showing likely identifiers.
The SCI_AUTOCSHOW message causes this list to be displayed, with its argument being a list of
- words separated by space characters. SCI_AUTOCPOSSTART returns the value of the current
+ words separated by separator characters. The initial separator character is a space but this can
+ be set or got with SCI_AUTOCSETSEPARATOR and SCI_AUTOCGETSEPARATOR.
+ SCI_AUTOCPOSSTART returns the value of the current
position when SCI_AUTOCSHOW started display of the list.
+ An entry can be selected SCI_AUTOCSELECT.
</p>
<p>
The current selection can be triggered with the SCI_AUTOCCOMPLETE message. This has the same