diff options
author | nyamatongwe <devnull@localhost> | 2007-07-12 12:59:47 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-07-12 12:59:47 +0000 |
commit | b6c5e2f5a69fca63fcdd7a2ded850299e36124b7 (patch) | |
tree | 789b7e855e141f8c87557a365716bec4d9f71078 /doc/ScintillaDoc.html | |
parent | 3839c03ad51809d5a7bbe1e8f57632f831d953d5 (diff) | |
download | scintilla-mirror-b6c5e2f5a69fca63fcdd7a2ded850299e36124b7.tar.gz |
Modification allows indentation guides to appear on lines that are
empty.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 22e4a7658..be0c3cef0 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -2658,7 +2658,7 @@ struct TextToFind { <p><b id="SCI_GETLINEINDENTPOSITION">SCI_GETLINEINDENTPOSITION(int line)</b><br /> This returns the position at the end of indentation of a line.</p> - <p><b id="SCI_SETINDENTATIONGUIDES">SCI_SETINDENTATIONGUIDES(bool view)</b><br /> + <p><b id="SCI_SETINDENTATIONGUIDES">SCI_SETINDENTATIONGUIDES(int indentView)</b><br /> <b id="SCI_GETINDENTATIONGUIDES">SCI_GETINDENTATIONGUIDES</b><br /> Indentation guides are dotted vertical lines that appear within indentation white space every indent size columns. They make it easy to see which constructs line up especially when they @@ -2666,6 +2666,39 @@ struct TextToFind { href="#StyleDefinition"><code>STYLE_INDENTGUIDE</code></a> (37) is used to specify the foreground and background colour of the indentation guides.</p> + <p>There are 4 indentation guide views. + SC_IV_NONE turns the feature off but the other 3 states determine how far the guides appear on + empty lines. + <table border="0" summary="Search flags"> + <tbody> + <tr> + <td><code>SC_IV_NONE</code></td> + <td>No indentation guides are shown.</td> + </tr> + + <tr> + <td><code>SC_IV_REAL</code></td> + <td>Indentation guides are shown inside real indentation white space.</td> + </tr> + + <tr> + <td><code>SC_IV_LOOKFORWARD</code></td> + <td>Indentation guides are shown beyond the actual indentation up to the level of the + next non-empty line. + If the previous non-empty line was a fold header then indentation guides are shown for + one more level of indent than that line. This setting is good for Python.</td> + </tr> + + <tr> + <td><code>SC_IV_LOOKBOTH</code></td> + <td>Indentation guides are shown beyond the actual indentation up to the level of the + next non-empty line or previous non-empty line whichever is the greater. + This setting is good for most languages.</td> + </tr> + + </table> + </p> + <p><b id="SCI_SETHIGHLIGHTGUIDE">SCI_SETHIGHLIGHTGUIDE(int column)</b><br /> <b id="SCI_GETHIGHLIGHTGUIDE">SCI_GETHIGHLIGHTGUIDE</b><br /> When brace highlighting occurs, the indentation guide corresponding to the braces may be |