aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-07-12 03:39:49 +0000
committernyamatongwe <devnull@localhost>2000-07-12 03:39:49 +0000
commit9bde3adbd08a9f706655f0e0fe1c9adf685408a0 (patch)
treee9082783244851d58fffe9faae8af129f92b0409 /include/Scintilla.iface
parent762e9a08d98e8e1c8c67982259be3dacc3cd7f2c (diff)
downloadscintilla-mirror-9bde3adbd08a9f706655f0e0fe1c9adf685408a0.tar.gz
Autocompletion cancel at start position available to API.
Inverted default value to be compatible with older code.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface7
1 files changed, 7 insertions, 0 deletions
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,)