diff options
author | nyamatongwe <devnull@localhost> | 2002-01-13 01:10:10 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-01-13 01:10:10 +0000 |
commit | 7b0c5a98abfcd122f2f88d55b3c1b09391a1af8a (patch) | |
tree | 7a1bd0b59cc23e517090aed5a2616b4f0a2126ed /src/AutoComplete.h | |
parent | 3b8295dbe789457385284beafd3e8bd36359895a (diff) | |
download | scintilla-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.h')
-rw-r--r-- | src/AutoComplete.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/AutoComplete.h b/src/AutoComplete.h index 79d467529..80dc95dc0 100644 --- a/src/AutoComplete.h +++ b/src/AutoComplete.h @@ -25,6 +25,7 @@ public: /// Should autocompletion be canceled if editor's currentPos <= startPos? bool cancelAtStartPos; bool autoHide; + bool dropRestOfWord; AutoComplete(); ~AutoComplete(); |