diff options
author | nyamatongwe <unknown> | 2000-07-12 03:39:49 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-07-12 03:39:49 +0000 |
commit | befcf67e8df6f8b80df05efa8f77ec81fc3ea45b (patch) | |
tree | e9082783244851d58fffe9faae8af129f92b0409 /include | |
parent | 372b4cbe4a43236de333d2b0dda964973b886bc8 (diff) | |
download | scintilla-mirror-befcf67e8df6f8b80df05efa8f77ec81fc3ea45b.tar.gz |
Autocompletion cancel at start position available to API.
Inverted default value to be compatible with older code.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index e53931e0f..c452d3f20 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -208,6 +208,8 @@ void Scintilla_RegisterClasses(HINSTANCE hInstance); #define SCI_AUTOCSETSEPARATOR SCI_START + 106 #define SCI_AUTOCGETSEPARATOR SCI_START + 107 #define SCI_AUTOCSELECT SCI_START + 108 +#define SCI_AUTOCSETCANCELATSTART SCI_START + 110 +#define SCI_AUTOCGETCANCELATSTART SCI_START + 111 #define SCI_GETTABWIDTH SCI_START + 121 #define SCI_SETINDENT SCI_START + 122 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index ce52f1c70..df63dd387 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -422,6 +422,13 @@ get int AutoCGetSeparator=2107(,) # Select the item in the auto-completion list that starts with a string. fun void AutoCSelect=2108(, string text) +# Should the auto-completion list be cancelled if the user backspaces to a +# position before where the box was created. +set void AutoCSetCancelAtStart=2110(bool cancel,) + +# Retrieve whether auto-completion cancelled by backspacing before start. +get bool AutoCGetCancelAtStart=2111(,) + # Set the number of spaces used for one level of indentation. set void SetIndent=2122(int indentSize,) |