diff options
| author | nyamatongwe <unknown> | 2013-04-01 14:25:49 +1100 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2013-04-01 14:25:49 +1100 |
| commit | aef08781447174ac2f4687d5594ea8a27a5358df (patch) | |
| tree | 759734edfdfc7bcf6b6c53d697f410616a422326 /include/Scintilla.iface | |
| parent | 00e1601aafac485ac758ad7325b5e9b03b487584 (diff) | |
| download | scintilla-mirror-aef08781447174ac2f4687d5594ea8a27a5358df.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.iface')
| -rw-r--r-- | include/Scintilla.iface | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 496f472ae..8d15e1c4c 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1842,6 +1842,17 @@ set void AutoCSetCaseInsensitiveBehaviour=2634(int behaviour,) # Get auto-completion case insensitive behaviour. get int AutoCGetCaseInsensitiveBehaviour=2635(,) +enu Ordering=SC_ORDER_ +val SC_ORDER_PRESORTED=0 +val SC_ORDER_PERFORMSORT=1 +val SC_ORDER_CUSTOM=2 + +# Set the way autocompletion lists are ordered. +set void AutoCSetOrder=2660(int order,) + +# Get the way autocompletion lists are ordered. +get int AutoCGetOrder=2661(,) + # Enlarge the document to a particular size of text bytes. fun void Allocate=2446(int bytes,) |
