aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-05-24 10:20:06 +1000
committerNeil <nyamatongwe@gmail.com>2014-05-24 10:20:06 +1000
commit0e25a153a1970e5b895072f265c02bac9fd7f3fa (patch)
treeb2570a653b9dfb0d8349dc09a48ce5e9cc74a84f /include/Scintilla.iface
parentaba660e18c19beaada7cc75c21a81760c0ee976e (diff)
downloadscintilla-mirror-0e25a153a1970e5b895072f265c02bac9fd7f3fa.tar.gz
SCI_AUTOCSETMULTI allows setting whether autocompletion text is inserted at each
selection when multiple selections are active. From Mitchell Foral.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index f6b17bca8..3e5f51b9c 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1884,6 +1884,16 @@ set void AutoCSetCaseInsensitiveBehaviour=2634(int behaviour,)
# Get auto-completion case insensitive behaviour.
get int AutoCGetCaseInsensitiveBehaviour=2635(,)
+enu MultiAutoComplete=SC_MULTIAUTOC_
+val SC_MULTIAUTOC_ONCE=0
+val SC_MULTIAUTOC_EACH=1
+
+# Change the effect of autocompleting when there are multiple selections.
+set void AutoCSetMulti=2636(int multi,)
+
+# Retrieve the effect of autocompleting when there are multiple selections..
+get int AutoCGetMulti=2637(,)
+
enu Ordering=SC_ORDER_
val SC_ORDER_PRESORTED=0
val SC_ORDER_PERFORMSORT=1