diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ScintillaDoc.html | 8 | 
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(<unused>,char *chars) +SCI_AUTOCSETSEPARATOR(char separator) +SCI_AUTOCGETSEPARATOR +SCI_AUTOCSELECT(<unused>,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 | 
