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.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 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index d97da016f..6fec9be58 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -756,7 +756,9 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP #define SCI_CANCEL 2325 #define SCI_DELETEBACK 2326 #define SCI_TAB 2327 +#define SCI_LINEINDENT 2813 #define SCI_BACKTAB 2328 +#define SCI_LINEDEDENT 2814 #define SCI_NEWLINE 2329 #define SCI_FORMFEED 2330 #define SCI_VCHOME 2331 |