From 687cd7a0e91208e97bd198cf13f416b0937dd6c3 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 2 Feb 2014 18:09:44 +1100 Subject: Added wrap mode SC_WRAP_WHITESPACE which only wraps on whitespace, not on style changes. From Robert Gieseke. --- doc/ScintillaDoc.html | 11 ++++++----- doc/ScintillaHistory.html | 5 +++++ 2 files changed, 11 insertions(+), 5 deletions(-) (limited to 'doc') 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){

SCI_SETWRAPMODE(int wrapMode)
SCI_GETWRAPMODE
Set wrapMode to SC_WRAP_WORD (1) to enable wrapping - on word boundaries, SC_WRAP_CHAR (2) to enable wrapping - between any characters, and to SC_WRAP_NONE (0) to disable line - wrapping. SC_WRAP_CHAR is preferred to - SC_WRAP_WORD for Asian languages where there is no white space - between words.

+ on word or style boundaries, SC_WRAP_CHAR (2) to enable wrapping + between any characters, SC_WRAP_WHITESPACE (3) to enable + wrapping on whitespace, and SC_WRAP_NONE (0) to disable line + wrapping. SC_WRAP_CHAR is preferred for Asian languages where + there is no white space between words. +

SCI_SETWRAPVISUALFLAGS(int wrapVisualFlags)
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 72aad759a..43b4b8327 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -440,6 +440,8 @@ felix Christian Walther Ebben + + Robert Gieseke

@@ -459,6 +461,9 @@ Released 16 March 2014.

  • + Added wrap mode SC_WRAP_WHITESPACE which only wraps on whitespace, not on style changes. +
  • +
  • Fix bug on Windows when resizing autocompletion list with only short strings caused the list to move.
  • -- cgit v1.2.3