From 6652c4eadad09cf6ea23b690c92d70b55a49d57f Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 20 Nov 2015 11:05:28 +1100 Subject: Remove line end whitespace. --- doc/ScintillaUsage.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc/ScintillaUsage.html') diff --git a/doc/ScintillaUsage.html b/doc/ScintillaUsage.html index 1ddafafd3..984360d39 100644 --- a/doc/ScintillaUsage.html +++ b/doc/ScintillaUsage.html @@ -191,7 +191,7 @@ SPAN { class='S11'>linebuf)));
    
}
}
- +

Of course, fancier handling could be implemented. For example, if the previous line was the start of a control construct, the next line could be automatically indented one tab further. @@ -249,7 +249,7 @@ SPAN { class='S11'>endStyled,  notification->position);
- +

Colourize(start, end) retrieves the specified range of text and then calls ColourizeDoc in keywords.cxx. It starts the process by calling: @@ -259,7 +259,7 @@ SPAN { class='S11'>SCI_STARTSTYLING,  startPos,  31);
- +

and then for each token of the text, calling:

@@ -268,7 +268,7 @@ SPAN { class='S11'>SCI_SETSTYLING,  length,  style);
- +

where style is a number from 0 to 31 whose appearance has been defined using the SCI_STYLESET... messages. @@ -324,7 +324,7 @@ SPAN { class='S10'>=  linebuf  +  startword;
- +

Then if a calltip is available it can be displayed. The calltip appears immediately below the position specified. The calltip can be multiple lines separated by newlines (\n). @@ -344,7 +344,7 @@ SPAN { class='S11'>wordLen  -  1,  calltip);
- +

The calltip can be removed when a closing parenthesis is entered:

@@ -360,7 +360,7 @@ SPAN { SCI_CALLTIPCANCEL,  0,  0);
- +

Obviously, it is up the application to look after supplying the appropriate calltip text.

-- cgit v1.2.3