diff options
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r-- | include/Scintilla.iface | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index c04d23a80..25201cf47 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1993,9 +1993,16 @@ fun void DeleteBack=2326(,) # If more than one line selected, indent the lines. fun void Tab=2327(,) -# Dedent the selected lines. +# Indent the current and selected lines. +fun void LineIndent=2813(,) + +# If selection is empty or all on one line dedent the line if caret is at start, else move caret. +# If more than one line selected, dedent the lines. fun void BackTab=2328(,) +# Dedent the current and selected lines. +fun void LineDedent=2814(,) + # Insert a new line, may use a CRLF, CR or LF depending on EOL mode. fun void NewLine=2329(,) |