diff options
| author | Neil <nyamatongwe@gmail.com> | 2022-10-20 10:42:56 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2022-10-20 10:42:56 +1100 |
| commit | 758ee3666b0ee5b1adc91c269ec845f9db6f8dea (patch) | |
| tree | 1e00fe5d9c3871ebd8ecfc2d8547538766376999 /src/ScintillaBase.h | |
| parent | bb1cd6ce1a5f0a8ea1a31d37c0500c6a4edb1372 (diff) | |
| download | scintilla-mirror-758ee3666b0ee5b1adc91c269ec845f9db6f8dea.tar.gz | |
Feature [feature-requests:#1459] Send SCN_AUTOCCOMPLETED for SCI_AUTOCSHOW
triggering insertion because of SCI_AUTOCSETCHOOSESINGLE mode.
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 820f88daa..b8331aaf0 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -65,6 +65,7 @@ protected: int AutoCompleteGetCurrentText(char *buffer) const; void AutoCompleteCharacterAdded(char ch); void AutoCompleteCharacterDeleted(); + void AutoCompleteNotifyCompleted(char ch, CompletionMethods completionMethod, Sci::Position firstPos, const char *text); void AutoCompleteCompleted(char ch, Scintilla::CompletionMethods completionMethod); void AutoCompleteMoveToCurrentWord(); void AutoCompleteSelection(); |
