diff options
author | Neil <nyamatongwe@gmail.com> | 2014-05-24 10:20:06 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-05-24 10:20:06 +1000 |
commit | c4fb5a967fa550def8a75f12f6216b56aa68a179 (patch) | |
tree | 7269a7d3042559cf6556a6da753a95adb4be2665 /src/ScintillaBase.h | |
parent | 4270f2252efd78f6711e25e36c6d22556c90177a (diff) | |
download | scintilla-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.h | 1 |
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(); |