diff options
| author | Martijn Laan <1092369+martijnlaan@users.noreply.github.com> | 2024-07-31 21:49:44 +1000 |
|---|---|---|
| committer | Martijn Laan <1092369+martijnlaan@users.noreply.github.com> | 2024-07-31 21:49:44 +1000 |
| commit | 0d6fd0c6bc452f41919bbdf8dcc9b3d6fbc83205 (patch) | |
| tree | 44ea2ccd2b37a031cfda50a93c06ce8cd4acf0b2 /include/Scintilla.iface | |
| parent | 1cccf5165b891eb95c85932474bb872ab0fbe638 (diff) | |
| download | scintilla-mirror-0d6fd0c6bc452f41919bbdf8dcc9b3d6fbc83205.tar.gz | |
Feature [feature-requests:#1524]. Add SCI_LINEINDENT and SCI_LINEDEDENT.
These force the multiline behaviour of SCI_TAB and SCI_BACKTAB.
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(,) |
