aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-02-02 18:09:44 +1100
committerNeil <nyamatongwe@gmail.com>2014-02-02 18:09:44 +1100
commit253bc4cd3a19e93f7090c74af92a871765afe002 (patch)
tree8c09bb0f872d03ced471ca583408bb0d5eb8ff16 /doc/ScintillaDoc.html
parentb6c1e9cab3172739006d3a3763cbf5fd8ee95fe6 (diff)
downloadscintilla-mirror-253bc4cd3a19e93f7090c74af92a871765afe002.tar.gz
Added wrap mode SC_WRAP_WHITESPACE which only wraps on whitespace, not on style changes.
From Robert Gieseke.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html11
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 781695a14..306df840a 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -5625,11 +5625,12 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
<p><b id="SCI_SETWRAPMODE">SCI_SETWRAPMODE(int wrapMode)</b><br />
<b id="SCI_GETWRAPMODE">SCI_GETWRAPMODE</b><br />
Set wrapMode to <code>SC_WRAP_WORD</code> (1) to enable wrapping
- on word boundaries, <code>SC_WRAP_CHAR</code> (2) to enable wrapping
- between any characters, and to <code>SC_WRAP_NONE</code> (0) to disable line
- wrapping. <code>SC_WRAP_CHAR</code> is preferred to
- <code>SC_WRAP_WORD</code> for Asian languages where there is no white space
- between words.</p>
+ on word or style boundaries, <code>SC_WRAP_CHAR</code> (2) to enable wrapping
+ between any characters, <code>SC_WRAP_WHITESPACE</code> (3) to enable
+ wrapping on whitespace, and <code>SC_WRAP_NONE</code> (0) to disable line
+ wrapping. <code>SC_WRAP_CHAR</code> is preferred for Asian languages where
+ there is no white space between words.
+ </p>
<p><b id="SCI_SETWRAPVISUALFLAGS">SCI_SETWRAPVISUALFLAGS(int wrapVisualFlags)</b><br />