From b64652b857d3a5922c72ccc801ac77aa9cff27c0 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Sun, 2 Nov 2025 23:50:08 +0100 Subject: added SCI_SETTABDRAWMODE(SCTD_CONTROLCHAR) Allows rendering tabs (ASCII 9) with character representations like any other control character. This will not actually change the tab's indentation, so you may need to call SCI_SETTABWIDTH and SCI_SETTABMINIMUMWIDTH as well. --- include/Scintilla.iface | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/Scintilla.iface') diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 3e0bbd147..0c83e3fac 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -196,9 +196,11 @@ set void SetViewWS=2021(WhiteSpace viewWS,) enu TabDrawMode=SCTD_ val SCTD_LONGARROW=0 val SCTD_STRIKEOUT=1 +val SCTD_CONTROLCHAR=2 ali SCTD_LONGARROW=LONG_ARROW ali SCTD_STRIKEOUT=STRIKE_OUT +ali SCTD_CONTROLCHAR=CONTROL_CHAR # Retrieve the current tab draw mode. # Returns one of SCTD_* constants. -- cgit v1.2.3