diff options
author | nyamatongwe <unknown> | 2000-06-23 14:49:46 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-06-23 14:49:46 +0000 |
commit | 01401e2dd76e99b63e0a6606d57a516b55839dbc (patch) | |
tree | df7f9d14397fedd3e253b949a742f714d7a1a1e8 /doc/ScintillaDoc.html | |
parent | 6516b7b98487b52a0e85efc7306315cf34629314 (diff) | |
download | scintilla-mirror-01401e2dd76e99b63e0a6606d57a516b55839dbc.tar.gz |
Updated version number to 1.27.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 4e4e94eef..39bdb2003 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -310,8 +310,9 @@ SCI_STYLESETCHARACTERSET(int stylenumber, int charset) </p> <p> As well as the 32 fundamental lexer styles, there are also some predefined numbered styles - starting at 32, STYLE_DEFAULT, STYLE_LINENUMBER, STYLE_BRACELIGHT, STYLE_BRACEBAD, and - STYLE_CONTROLCHAR. These can be defined with the SCI_STYLESET* messages. + starting at 32, STYLE_DEFAULT, STYLE_LINENUMBER, STYLE_BRACELIGHT, STYLE_BRACEBAD, + STYLE_CONTROLCHAR, and STYLE_INDENTGUIDE. + These can be defined with the SCI_STYLESET* messages. </p> <pre> SCI_SETFORE(int colour) @@ -505,6 +506,25 @@ SCI_BRACEMATCH(int position, int maxReStyle) maxReStyle parameter must currently be 0. </p> <h3> + Indentation Guides + </h3> +<pre> +SCI_SETINDENTATIONGUIDES(bool view) +SCI_GETINDENTATIONGUIDES +SCI_SETHIGHLIGHTGUIDE(int column) +SCI_GETHIGHLIGHTGUIDE +</pre> + <p> + Indentation guides are dotted vertical lines that appear within indentation whitespace + every indent size columns. They make it easy to see which constructs line up especially + when they extend over multiple pages. Style 37 is used to specify the foreground and + background colour of the indentation guides. + </p> + <p> + When brace highlighting occurs, the indentation guide corresponding to the braces may be + highlighted with the brace highlighting style, 34. + </p> + <h3> Markers </h3> <pre> |