aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/AutoComplete.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-01-13 01:10:10 +0000
committernyamatongwe <devnull@localhost>2002-01-13 01:10:10 +0000
commit7b0c5a98abfcd122f2f88d55b3c1b09391a1af8a (patch)
tree7a1bd0b59cc23e517090aed5a2616b4f0a2126ed /src/AutoComplete.cxx
parent3b8295dbe789457385284beafd3e8bd36359895a (diff)
downloadscintilla-mirror-7b0c5a98abfcd122f2f88d55b3c1b09391a1af8a.tar.gz
Added option to autocompletion AutoCSetDropRestOfWord which removes any
word characters following an insertion made by auto-completion. Bundled the changes made by an autocompletion into one undo action.
Diffstat (limited to 'src/AutoComplete.cxx')
-rw-r--r--src/AutoComplete.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/AutoComplete.cxx b/src/AutoComplete.cxx
index 7f7412e43..f67d42b0b 100644
--- a/src/AutoComplete.cxx
+++ b/src/AutoComplete.cxx
@@ -22,7 +22,8 @@ AutoComplete::AutoComplete() :
posStart(0),
startLen(0),
cancelAtStartPos(true),
- autoHide(true) {
+ autoHide(true),
+ dropRestOfWord(false) {
stopChars[0] = '\0';
fillUpChars[0] = '\0';
}