aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.h
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.h
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.h')
-rw-r--r--include/Scintilla.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index f8744c1c0..9bb0ca905 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -717,6 +717,10 @@ 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_MULTIAUTOC_ONCE 0
+#define SC_MULTIAUTOC_EACH 1
+#define SCI_AUTOCSETMULTI 2636
+#define SCI_AUTOCGETMULTI 2637
#define SC_ORDER_PRESORTED 0
#define SC_ORDER_PERFORMSORT 1
#define SC_ORDER_CUSTOM 2