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
commitc4fb5a967fa550def8a75f12f6216b56aa68a179 (patch)
tree7269a7d3042559cf6556a6da753a95adb4be2665 /include/Scintilla.h
parent4270f2252efd78f6711e25e36c6d22556c90177a (diff)
downloadscintilla-mirror-c4fb5a967fa550def8a75f12f6216b56aa68a179.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