diff options
author | Jiří Techet <techet@gmail.com> | 2024-03-08 07:56:22 +1100 |
---|---|---|
committer | Jiří Techet <techet@gmail.com> | 2024-03-08 07:56:22 +1100 |
commit | 548093449967bb84aaf112df736428681657c528 (patch) | |
tree | 2b0fa62496674d8d1f777679628a56e8fcbca0c0 /include/Scintilla.h | |
parent | 792b3fde18766b74c56472a26fa82107b650d3e4 (diff) | |
download | scintilla-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/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 4ea264d8e..9b53ae174 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -445,6 +445,7 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP #define SCI_AUTOCGETAUTOHIDE 2119 #define SC_AUTOCOMPLETE_NORMAL 0 #define SC_AUTOCOMPLETE_FIXED_SIZE 1 +#define SC_AUTOCOMPLETE_SELECT_FIRST_ITEM 2 #define SCI_AUTOCSETOPTIONS 2638 #define SCI_AUTOCGETOPTIONS 2639 #define SCI_AUTOCSETDROPRESTOFWORD 2270 |