diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index ee5d152b4..ffa409f71 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -4827,6 +4827,7 @@ struct SCNotification { <a class="message" href="#SCN_CALLTIPCLICK">SCN_CALLTIPCLICK</a><br /> <a class="message" href="#SCN_AUTOCSELECTION">SCN_AUTOCSELECTION</a><br /> <a class="message" href="#SCN_AUTOCCANCELLED">SCN_AUTOCCANCELLED</a><br /> + <a class="message" href="#SCN_AUTOCCHARDELETED">SCN_AUTOCCHARDELETED</a><br /> </code> <p>The following <code>SCI_*</code> messages are associated with these notifications:</p> @@ -5464,7 +5465,11 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next <p><b id="SCN_AUTOCCANCELLED">SCN_AUTOCCANCELLED</b><br /> The user has cancelled an <a class="jump" href="#Autocompletion">autocompletion list</a>. - There is no other information in SCNotification. + There is no other information in SCNotification.</p> + + <p><b id="SCN_AUTOCCHARDELETED">SCN_AUTOCCHARDELETED</b><br /> + The user deleted a character while autocompletion list was active. + There is no other information in SCNotification.</p> <h2 id="GTK">GTK+</h2> <p>On GTK+, the following functions create a Scintilla widget, communicate with it and allow |