aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--doc/ScintillaDoc.html10
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 57fbcf019..8befe59aa 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -903,8 +903,10 @@ SCI_AUTOCSETCHOOSESINGLE(bool chooseSingle)
SCI_AUTOCGETCHOOSESINGLE
SCI_AUTOCSETIGNORECASE(bool ignoreCase)
SCI_AUTOCGETIGNORECASE
-SCI_AUTOCSETAUTOHIDE(bool bool autoHide)
+SCI_AUTOCSETAUTOHIDE(bool autoHide)
SCI_AUTOCGETAUTOHIDE
+SCI_AUTOCSETDROPRESTOFWORD(bool dropRestOfWord)
+SCI_AUTOCGETDROPRESTOFWORD
</pre>
<p>
Auto completion displays a list box based upon the users typing
@@ -936,9 +938,13 @@ SCI_AUTOCGETAUTOHIDE
</p>
<p>
The list will also be cancelled if there are no viable matches.
- To avoid this behaviour call SCI_AUTOCSETAUTOHIDE with a false
+ To avoid this behaviour call SCI_AUTOCSETAUTOHIDE with a false
argument.
</p>
+ <p>
+ When an item is selected, any word characters following the caret are first
+ erased if SCI_AUTOCSETDROPRESTOFWORD is used to set this mode.
+ </p>
<h3>
User lists
</h3>