diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 17 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 5 |
2 files changed, 19 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index b55c305b4..d019a5688 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -5534,7 +5534,8 @@ struct Sci_RangeToFormat { <td align="center">0</td> - <td>Print using the current screen colours. This is the default.</td> + <td>Print using the current screen colours with the exception of line number margins which print on a white background. + This is the default.</td> </tr> <tr> @@ -5567,9 +5568,19 @@ struct Sci_RangeToFormat { <td align="center">4</td> - <td>Everything prints in its own colour on a white background except that line numbers - use their own background colour.</td> + <td>Everything prints in its own foreground colour but all styles up to and including STYLE_LINENUMBER will print + on a white background.</td> </tr> + + <tr> + <td align="left"><code>SC_PRINT_SCREENCOLOURS</code></td> + + <td align="center">5</td> + + <td>Print using the current screen colours for both foreground and background. + This is the only mode that does not set the background colour of the line number margin to white.</td> + </tr> + </tbody> </table> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 61d3e3bf3..620b44aad 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -520,6 +520,7 @@ <td>Georger Araújo</td> <td>Dimitar Radev</td> <td>Gunter Königsmann</td> + <td>Nicholai Benalal</td> </tr> </table> <p> @@ -543,6 +544,10 @@ 2 GigaBytes. </li> <li> + Additional print option SC_PRINT_SCREENCOLOURS prints with the same colours used on screen + including line numbers. + </li> + <li> Set the last X chosen when SCI_REPLACESEL called to ensure macros work when text insertion followed by caret up or down. </li> |