diff options
author | Neil <nyamatongwe@gmail.com> | 2015-11-20 11:05:28 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2015-11-20 11:05:28 +1100 |
commit | 6652c4eadad09cf6ea23b690c92d70b55a49d57f (patch) | |
tree | 955441c738e7e43de65414f956b16d678486eb1a /doc/ScintillaUsage.html | |
parent | ad16ecb14a085d950b6a243b02267a0eca50f5c9 (diff) | |
download | scintilla-mirror-6652c4eadad09cf6ea23b690c92d70b55a49d57f.tar.gz |
Remove line end whitespace.
Diffstat (limited to 'doc/ScintillaUsage.html')
-rw-r--r-- | doc/ScintillaUsage.html | 14 |
1 files changed, 7 insertions, 7 deletions
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</span><span class='S10'>)));</span><span class='S0'><br /> </span> <span class='S10'>}</span><span class='S0'><br /> </span> <span class='S10'>}</span><br /> - + <p style="margin-bottom: 0in"> 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</span><span class='S10'>,</span><span class='S0'> </span> <span class='S11'>notification</span><span class='S10'>-></span><span class='S11'>position</span><span class='S10'>);</span><br /> - + <p> 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</span><span class='S10'>,</span><span class='S0'> </span> <span class='S11'>startPos</span><span class='S10'>,</span><span class='S0'> </span> <span class='S4'>31</span><span class='S10'>);</span><br /> - + <p> and then for each token of the text, calling: </p> @@ -268,7 +268,7 @@ SPAN { class='S11'>SCI_SETSTYLING</span><span class='S10'>,</span><span class='S0'> </span> <span class='S11'>length</span><span class='S10'>,</span><span class='S0'> </span> <span class='S11'>style</span><span class='S10'>);</span><br /> - + <p> 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'>=</span><span class='S0'> </span> <span class='S11'>linebuf</span><span class='S0'> </span> <span class='S10'>+</span><span class='S0'> </span> <span class='S11'>startword</span><span class='S10'>;</span><br /> - + <p> 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</span><span class='S0'> </span> <span class='S10'>-</span><span class='S0'> </span> <span class='S4'>1</span><span class='S10'>,</span><span class='S0'> </span> <span class='S11'>calltip</span><span class='S10'>);</span><br /> - + <p> The calltip can be removed when a closing parenthesis is entered: </p> @@ -360,7 +360,7 @@ SPAN { SCI_CALLTIPCANCEL</span><span class='S10'>,</span><span class='S0'> </span> <span class='S4'>0</span><span class='S10'>,</span><span class='S0'> </span> <span class='S4'> 0</span><span class='S10'>);</span><br /> - + <p> Obviously, it is up the application to look after supplying the appropriate calltip text. </p> |