From e1526b995aba2e8cd7b4ee018abaaf62e9897e06 Mon Sep 17 00:00:00 2001 From: Martijn Laan <1092369+martijnlaan@users.noreply.github.com> Date: Tue, 25 Jun 2024 15:22:23 +1000 Subject: Feature [feature-requests:#1519]. Cherry pick SC_MASK_HISTORY from isscint. --- doc/ScintillaDoc.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 6dda5eaaa..8f9e22290 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -2232,6 +2232,9 @@ struct Sci_TextToFindFull { + +
The bits used for change history markers are specified by SC_MASK_HISTORY
, which is commonly
+ used as an argument to SCI_SETMARGINMASKN
when defining a margin to be used for change history.
Indicators:
@@ -4468,8 +4471,10 @@ struct Sci_TextToFindFull { The mask is a 32-bit value. Each bit corresponds to one of 32 logical symbols that can be displayed in a margin that is enabled for symbols. There is a useful constant,SC_MASK_FOLDERS
(0xFE000000 or -33554432), that is a mask for the 7 logical
- symbols used to denote folding. You can assign a wide range of symbols and colours to each of
- the 32 logical symbols, see Markers for more information. If (mask
+ symbols used to denote folding, and another, SC_MASK_HISTORY
(0x01E00000 or
+ 31457280), that is a mask for the 4 logical symbols used to denote change history. You can
+ assign a wide range of symbols and colours to each of the 32 logical symbols, see
+ Markers for more information. If (mask
& SC_MASK_FOLDERS)==0
, the margin background colour is controlled by style 33 (STYLE_LINENUMBER
).
--
cgit v1.2.3