diff options
author | nyamatongwe <unknown> | 2009-01-02 07:34:52 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-01-02 07:34:52 +0000 |
commit | 9d349f528c551ffbc8637cdbc1c608a1a6ac1683 (patch) | |
tree | a8ba7fc5027ba39b278dab36a2450156e0ae082a /doc/ScintillaDoc.html | |
parent | d6571fa63db365bced55161c5d2e370b0097b4f8 (diff) | |
download | scintilla-mirror-9d349f528c551ffbc8637cdbc1c608a1a6ac1683.tar.gz |
Notification for deleting a character while an autocompletion is active.
By Sergey Kishchenko.
Diffstat (limited to 'doc/ScintillaDoc.html')
-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 |