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 /src/Editor.h | |
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 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index 50aa9a660..e42f36573 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -505,7 +505,7 @@ protected: // ScintillaBase subclass needs access to much of Editor virtual int KeyDefault(Scintilla::Keys /* key */, Scintilla::KeyMod /*modifiers*/); int KeyDownWithModifiers(Scintilla::Keys key, Scintilla::KeyMod modifiers, bool *consumed); - void Indent(bool forwards); + void Indent(bool forwards, bool lineTab); virtual std::unique_ptr<CaseFolder> CaseFolderForEncoding(); Sci::Position FindText(Scintilla::uptr_t wParam, Scintilla::sptr_t lParam); |