aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/ScintillaTypes.h
diff options
context:
space:
mode:
authorJiří Techet <techet@gmail.com>2024-03-08 07:56:22 +1100
committerJiří Techet <techet@gmail.com>2024-03-08 07:56:22 +1100
commit548093449967bb84aaf112df736428681657c528 (patch)
tree2b0fa62496674d8d1f777679628a56e8fcbca0c0 /include/ScintillaTypes.h
parent792b3fde18766b74c56472a26fa82107b650d3e4 (diff)
downloadscintilla-mirror-548093449967bb84aaf112df736428681657c528.tar.gz
Bug [#2403]. Add SC_AUTOCOMPLETE_SELECT_FIRST_ITEM.
This option always selects the first item in the autocompletion list.
Diffstat (limited to 'include/ScintillaTypes.h')
-rw-r--r--include/ScintillaTypes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ScintillaTypes.h b/include/ScintillaTypes.h
index 4692e9916..128b73002 100644
--- a/include/ScintillaTypes.h
+++ b/include/ScintillaTypes.h
@@ -249,6 +249,7 @@ enum class IndicFlag {
enum class AutoCompleteOption {
Normal = 0,
FixedSize = 1,
+ SelectFirstItem = 2,
};
enum class IndentView {