aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2013-04-01 14:25:49 +1100
committernyamatongwe <devnull@localhost>2013-04-01 14:25:49 +1100
commit3b9151f20a26c69428590bedab0270fedf334db8 (patch)
treefc18e116270dcabf429b4367be166fd28826b156 /include/Scintilla.h
parent6076715f3edf19f4897d910e6ddb7a032f4d17c6 (diff)
downloadscintilla-mirror-3b9151f20a26c69428590bedab0270fedf334db8.tar.gz
Feature [#981]. Added autocompletion order property to allow list to be ordered
according to container preference but still allowing selection by typing. From Alpha.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r--include/Scintilla.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index 48c7ff379..490cd3bf6 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -698,6 +698,11 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE 1
#define SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR 2634
#define SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR 2635
+#define SC_ORDER_PRESORTED 0
+#define SC_ORDER_PERFORMSORT 1
+#define SC_ORDER_CUSTOM 2
+#define SCI_AUTOCSETORDER 2660
+#define SCI_AUTOCGETORDER 2661
#define SCI_ALLOCATE 2446
#define SCI_TARGETASUTF8 2447
#define SCI_SETLENGTHFORENCODE 2448