diff options
-rw-r--r-- | doc/ScintillaDoc.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 63c70ea22..e9e5e5eaf 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -924,6 +924,7 @@ SCI_AUTOCGETDROPRESTOFWORD SCI_AUTOCPOSSTART returns the value of the current position when SCI_AUTOCSHOW started display of the list. An entry can be selected SCI_AUTOCSELECT. + The list of words should be in sorted order. </p> <p> The current selection can be triggered with the SCI_AUTOCCOMPLETE @@ -935,6 +936,12 @@ SCI_AUTOCGETDROPRESTOFWORD with the SCI_AUTOCSTOPS. </p> <p> + If set to ignore case mode with SCI_AUTOCSETIGNORECASE, + then strings are matched after being converted to upper case. + One result of this is that the list should be sorted with the punctuation + characters '[', '\', ']', '^', '_', and '`' sorted after letters. + </p> + <p> The default behaviour is for the list to be cancelled if the caret moves before the location it was at when the list was displayed. By calling SCI_AUTOCSETCANCELATSTART with a false argument, the |