aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.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 /src/ScintillaBase.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 'src/ScintillaBase.h')
-rw-r--r--src/ScintillaBase.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h
index 59ffea41e..8440ebecc 100644
--- a/src/ScintillaBase.h
+++ b/src/ScintillaBase.h
@@ -46,6 +46,7 @@ protected:
int listType; ///< 0 is an autocomplete list
int maxListWidth; /// Maximum width of list, in average character widths
+ int multiAutoCMode; /// Mode for autocompleting when multiple selections are present
#ifdef SCI_LEXER
LexState *DocumentLexState();