diff options
author | nyamatongwe <unknown> | 2002-02-06 11:46:25 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-02-06 11:46:25 +0000 |
commit | d27cc8e66dd4cbccc62caa9d6e093da32e28ce0b (patch) | |
tree | 9931c86f82ee3812711a0bb48229bd6f2a80aaba | |
parent | ef3100b98966666f01dacf6c1a5292d79dbdf34f (diff) | |
download | scintilla-mirror-d27cc8e66dd4cbccc62caa9d6e093da32e28ce0b.tar.gz |
Updated AutoCompletion.
-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 |