diff options
author | Neil <nyamatongwe@gmail.com> | 2022-10-01 11:22:13 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-10-01 11:22:13 +1000 |
commit | 232fad28e7003fd38e2468258bcfacc61381ef7a (patch) | |
tree | 2efb94aed53d0acf8ab2e36f0ee18ee8e0ef1a1a /doc/ScintillaDoc.html | |
parent | b8202ab86ed353ebb5f6c70bde91df05a2c7a350 (diff) | |
download | scintilla-mirror-232fad28e7003fd38e2468258bcfacc61381ef7a.tar.gz |
Draw SC_MARK_BAR markers underneath other markers as they often cover multiple
lines for change history and other markers mark individual lines.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 351a3d9ab..a9a7e72ed 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -129,7 +129,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 26 August 2022 NH</p> + <p>Last edited 1 October 2022 NH</p> <p style="background:#90F0C0">Scintilla 5 has moved the lexers from Scintilla into a new <a href="Lexilla.html">Lexilla</a> project.<br /> @@ -5175,8 +5175,11 @@ struct Sci_TextToFindFull { (<code>SC_MARK_</code>*) or you can use characters. By default, all 32 markers are set to <code>SC_MARK_CIRCLE</code> with a black foreground and a white background.</p> - <p>The markers are drawn in the order of their numbers, so higher numbered markers appear on - top of lower numbered ones. Markers try to move with their text by tracking where the start of + <p>The markers are drawn in the order of their numbers (except for <code>SC_MARK_BAR</code>), so higher + numbered markers appear on top of lower numbered ones. + <code>SC_MARK_BAR</code> markers are drawn first so they are underneath as they often cover + multiple lines for change history and other markers mark individual lines. + Markers try to move with their text by tracking where the start of their line moves. When a line is deleted, its markers are combined, by an <code>OR</code> operation, with the markers of the next line.</p> <code><a class="message" href="#SCI_MARKERDEFINE">SCI_MARKERDEFINE(int markerNumber, int |