diff options
author | nyamatongwe <devnull@localhost> | 2002-02-06 11:46:25 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-02-06 11:46:25 +0000 |
commit | 01ddd3dc18f9a22607d15d794affc093bef2a220 (patch) | |
tree | 9931c86f82ee3812711a0bb48229bd6f2a80aaba | |
parent | f6423c63a620d9a64779eab57f8faadb0fdbf02d (diff) | |
download | scintilla-mirror-01ddd3dc18f9a22607d15d794affc093bef2a220.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 |