summaryrefslogtreecommitdiffstats
path: root/scintilla/src/AutoComplete.h
diff options
context:
space:
mode:
Diffstat (limited to 'scintilla/src/AutoComplete.h')
-rw-r--r--scintilla/src/AutoComplete.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/scintilla/src/AutoComplete.h b/scintilla/src/AutoComplete.h
index ed215ec..c6562d2 100644
--- a/scintilla/src/AutoComplete.h
+++ b/scintilla/src/AutoComplete.h
@@ -21,6 +21,7 @@ class AutoComplete {
char separator;
char typesep; // Type seperator
enum { maxItemLen=1000 };
+ std::vector<int> sortMatrix;
public:
@@ -36,6 +37,11 @@ public:
unsigned int ignoreCaseBehaviour;
int widthLBDefault;
int heightLBDefault;
+ /** SC_ORDER_PRESORTED: Assume the list is presorted; selection will fail if it is not alphabetical<br />
+ * SC_ORDER_PERFORMSORT: Sort the list alphabetically; start up performance cost for sorting<br />
+ * SC_ORDER_CUSTOM: Handle non-alphabetical entries; start up performance cost for generating a sorted lookup table
+ */
+ int autoSort;
AutoComplete();
~AutoComplete();