diff options
author | Henrik Hank <unknown> | 2018-06-06 08:55:59 +1000 |
---|---|---|
committer | Henrik Hank <unknown> | 2018-06-06 08:55:59 +1000 |
commit | 2cfe83dc91dbbdd195b17b5446ce595f0c658db2 (patch) | |
tree | 89439af44aff139af5579281200c48fa9c1e1e20 /include | |
parent | c823cbe5c809df5f84a2ef0b867a0733f7568cf0 (diff) | |
download | scintilla-mirror-2cfe83dc91dbbdd195b17b5446ce595f0c658db2.tar.gz |
Backport: SC_WRAPINDENT_DEEPINDENT added to indent two tabs from previous line.
Backport of changeset 7024:72c92ed3dc10.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 1 | ||||
-rw-r--r-- | include/Scintilla.iface | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 4b93e4507..70f17918b 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -548,6 +548,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SC_WRAPINDENT_FIXED 0 #define SC_WRAPINDENT_SAME 1 #define SC_WRAPINDENT_INDENT 2 +#define SC_WRAPINDENT_DEEPINDENT 3 #define SCI_SETWRAPINDENTMODE 2472 #define SCI_GETWRAPINDENTMODE 2473 #define SC_CACHE_NONE 0 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index d4d8ac78b..d7f7d68e3 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1359,6 +1359,7 @@ enu WrapIndentMode=SC_WRAPINDENT_ val SC_WRAPINDENT_FIXED=0 val SC_WRAPINDENT_SAME=1 val SC_WRAPINDENT_INDENT=2 +val SC_WRAPINDENT_DEEPINDENT=3 # Sets how wrapped sublines are placed. Default is fixed. set void SetWrapIndentMode=2472(int wrapIndentMode,) |