aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-04-10 13:52:17 +0000
committernyamatongwe <devnull@localhost>2000-04-10 13:52:17 +0000
commit0deaa9b95af06c01fa0e6714ad73b41ed22ae5c7 (patch)
treeb8af678dd9e189e517668330c92aeab3ff5f0115 /doc/ScintillaDoc.html
parentdba48e020c0a68a84f4f5f11d5600bba90598da3 (diff)
downloadscintilla-mirror-0deaa9b95af06c01fa0e6714ad73b41ed22ae5c7.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