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.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/Scintilla.h') diff --git a/include/Scintilla.h b/include/Scintilla.h index 115003c1b..f4c237316 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -78,6 +78,7 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP #define SCI_SETVIEWWS 2021 #define SCTD_LONGARROW 0 #define SCTD_STRIKEOUT 1 +#define SCTD_CONTROLCHAR 2 #define SCI_GETTABDRAWMODE 2698 #define SCI_SETTABDRAWMODE 2699 #define SCI_POSITIONFROMPOINT 2022 -- cgit v1.2.3