diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 24 | ||||
-rw-r--r-- | doc/ScintillaDownload.html | 6 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 10 | ||||
-rw-r--r-- | doc/index.html | 11 |
4 files changed, 43 insertions, 8 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> diff --git a/doc/ScintillaDownload.html b/doc/ScintillaDownload.html index 0a1158049..c5dc344e2 100644 --- a/doc/ScintillaDownload.html +++ b/doc/ScintillaDownload.html @@ -25,7 +25,7 @@ <table bgcolor="#CCCCCC" width="100%" cellspacing="0" cellpadding="8" border="0"> <tr> <td> - <font size="4"> <a href="scintilla126.zip">Windows</a> <a href="scintilla126.tgz"> + <font size="4"> <a href="scintilla127.zip">Windows</a> <a href="scintilla127.tgz"> GTK+/Linux</a> </font> </td> </tr> @@ -46,8 +46,8 @@ The source code package contains all of the source code for Scintilla but no binary executable code and is available in <ul> - <li><a href="scintilla126.zip">zip format</a> (250K) commonly used on Windows</li> - <li><a href="scintilla126.tgz">tgz format</a> (220K) commonly used on Linux and compatible operating systems</li> + <li><a href="scintilla127.zip">zip format</a> (250K) commonly used on Windows</li> + <li><a href="scintilla127.tgz">tgz format</a> (220K) commonly used on Linux and compatible operating systems</li> </ul> Instructions for building on both Windows and Linux are included in the readme file. <p> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index c8a067623..f1367943e 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -141,6 +141,16 @@ CodePage, UsePalette, ReadOnly, CaretFore, and ModEventMask. </li> <li> + Caret is continuously on rather than blinking while typing or holding down + delete or backspace. And is now always shown if non blinking when focused on GTK+. + </li> + <li> + Bug fixed in SciTE with file extension comparison now done in case insensitive way. + </li> + <li> + Bugs fixed in SciTE's file path handling on Windows. + </li> + <li> Bug fixed with preprocessor '#' last visible character causing hang. </li> </ul> diff --git a/doc/index.html b/doc/index.html index 7a1b9fef9..86f896bc6 100644 --- a/doc/index.html +++ b/doc/index.html @@ -9,7 +9,7 @@ <meta name="keywords" content="Scintilla, SciTE, Editing Component, Text Editor" /> <meta name="Description" content="www.scintilla.org is the home of the Scintilla editing component and SciTE text editor application." /> - <meta name="Date.Modified" content="20000613" /> + <meta name="Date.Modified" content="20000623" /> <script> function IsRemote() { var loc = '' + window.location; @@ -31,8 +31,8 @@ GTK+</font> </td> <td width="40%" align="right"> - <font color="#FFCC99" size="3"> Release version 1.26<br /> - Site last modified June 13 2000</font> + <font color="#FFCC99" size="3"> Release version 1.27<br /> + Site last modified June 23 2000</font> </td> <td width="20%"> @@ -86,6 +86,11 @@ handling multiple documents.</font> </td> </tr> + <tr> + <td width="100%"> + <font color="#FFCC99" size="3"> Version 1.27 features indentation guides.</font> + </td> + </tr> </table> <table bgcolor="#CCCCCC" width="100%" cellspacing="0" cellpadding="8" border="0"> <tr> |