From 0d6fd0c6bc452f41919bbdf8dcc9b3d6fbc83205 Mon Sep 17 00:00:00 2001 From: Martijn Laan <1092369+martijnlaan@users.noreply.github.com> Date: Wed, 31 Jul 2024 21:49:44 +1000 Subject: Feature [feature-requests:#1524]. Add SCI_LINEINDENT and SCI_LINEDEDENT. These force the multiline behaviour of SCI_TAB and SCI_BACKTAB. --- include/Scintilla.iface | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'include/Scintilla.iface') 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(,) -- cgit v1.2.3