aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-05-14 03:26:53 +0000
committernyamatongwe <unknown>2001-05-14 03:26:53 +0000
commit466ec638ae719c9256286862355b33a39c7f136b (patch)
tree130d3d877cd2b55ce719a4dec978ce3bc8e8b3fe /include/Scintilla.iface
parent94eccf378241a5cefbfe7cec6734694cc85ee8b8 (diff)
downloadscintilla-mirror-466ec638ae719c9256286862355b33a39c7f136b.tar.gz
Merged patch from Michele to add ability for tab key to perform indent when
selection is empty and within indentation and for backspace to unindent in the same circumstances.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 4aaea15d4..604c96b2c 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -822,6 +822,18 @@ fun void EnsureVisible=2232(int line,)
# Set some debugging options for folding
fun void SetFoldFlags=2233(int flags,)
+# Sets whether a tab pressed when caret is within indentation indents
+set void SetTabIndents=2260(bool tabIndents,)
+
+# Does a tab pressed when caret is within indentation indent?
+get bool GetTabIndents=2261(,)
+
+# Sets whether a backspace pressed when caret is within indentation unindents
+set void SetBackSpaceUnIndents=2262(bool bsUnIndents,)
+
+# Does a backspace pressed when caret is within indentation unindent?
+get bool GetBackSpaceUnIndents=2263(,)
+
## Start of key messages
# Move caret down one line.
fun void LineDown=2300(,)