aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-01-18 10:31:18 +0000
committernyamatongwe <devnull@localhost>2002-01-18 10:31:18 +0000
commitee5872af3254dd9e1aeff31546130d6bff118b1a (patch)
tree64e4b3c7d53a1959e864ec40b46f1d9d96de56cc
parent9964d746fb102527ed8db38f740fbb43a2bf292c (diff)
downloadscintilla-mirror-ee5872af3254dd9e1aeff31546130d6bff118b1a.tar.gz
Documented DropRestOfWord mode for auto-completion.
-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>