aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/ScintillaTypes.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-07-17 14:54:31 +1000
committerNeil <nyamatongwe@gmail.com>2021-07-17 14:54:31 +1000
commitad0162453e48fb729d1793eca40ac137e1e3451e (patch)
tree158e0126b95245ca178531dcba45e4ffc5dcdde5 /include/ScintillaTypes.h
parent9aa05526ca323258c4879520093a0fe27826d53c (diff)
downloadscintilla-mirror-ad0162453e48fb729d1793eca40ac137e1e3451e.tar.gz
Add SCI_AUTOCSETOPTIONS to allow choosing a non-resizeable autocompletion list
on Win32. This also avoids a header rectangle above the list.
Diffstat (limited to 'include/ScintillaTypes.h')
-rw-r--r--include/ScintillaTypes.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ScintillaTypes.h b/include/ScintillaTypes.h
index ca0a07527..830ccadba 100644
--- a/include/ScintillaTypes.h
+++ b/include/ScintillaTypes.h
@@ -230,6 +230,11 @@ enum class IndicFlag {
ValueFore = 1,
};
+enum class AutoCompleteOption {
+ Normal = 0,
+ FixedSize = 1,
+};
+
enum class IndentView {
None = 0,
Real = 1,