diff options
| author | nyamatongwe <unknown> | 2002-01-13 01:10:10 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2002-01-13 01:10:10 +0000 |
| commit | e468d988b369e61696608fc9ccd52c6d746cb735 (patch) | |
| tree | 7a1bd0b59cc23e517090aed5a2616b4f0a2126ed /include/Scintilla.iface | |
| parent | 3e4b3fd45dfd68e74824320f909ef19c67f1b6d2 (diff) | |
| download | scintilla-mirror-e468d988b369e61696608fc9ccd52c6d746cb735.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 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 2f9de7d5a..a74f69075 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -540,6 +540,12 @@ set void AutoCSetAutoHide=2118(bool autoHide,) # Retrieve whether or not autocompletion is hidden automatically when nothing matches get bool AutoCGetAutoHide=2119(,) +# Set whether or not autocompletion deletes any word characters after the inserted text upon completion +set void AutoCSetDropRestOfWord=2270(bool dropRestOfWord,) + +# Retrieve whether or not autocompletion deletes any word characters after the inserted text upon completion +get bool AutoCGetDropRestOfWord=2271(,) + # Set the number of spaces used for one level of indentation. set void SetIndent=2122(int indentSize,) |
