diff options
author | Neil <nyamatongwe@gmail.com> | 2019-04-26 07:53:21 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-04-26 07:53:21 +1000 |
commit | 94750763850b4cb8051a7ee155ca403322726e44 (patch) | |
tree | e36a8a5e01ac9723b9157611c49ff74f6576099c /doc/ScintillaHistory.html | |
parent | b655ec9fbc090306549d632f27468a58211c3c60 (diff) | |
download | scintilla-mirror-94750763850b4cb8051a7ee155ca403322726e44.tar.gz |
Feature [feature-requests:#1238]. Simplify camel case forcing by checking only
for upper and lower case characters instead of current word characters.
This changes behaviour for words like "_word" -> "_Word" instead of remaining
"_word" but that doesn't matter for this feature's intended use which is to allow
display of ASCII-only keywords in the user's preferred casing (else/ELSE/Else)
for languages with case-insensitive keywords.
Diffstat (limited to 'doc/ScintillaHistory.html')
-rw-r--r-- | doc/ScintillaHistory.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index cff81ed87..0bd92761d 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -563,6 +563,12 @@ <li> Fix bug where changing identifier sets in lexers preserved previous identifiers. </li> + <li> + Changed behaviour of SCI_STYLESETCASE(*,SC_CASE_CAMEL) so that it only treats 'a-zA-Z' + as word characters because this covers the feature's intended use (viewing case-insensitive ASCII-only + keywords in a specified casing style) and simplifies the behaviour and code. + <a href="https://sourceforge.net/p/scintilla/feature-requests/1238/">Feature #1238</a>. + </li> </ul> <h3> <a href="https://www.scintilla.org/scite415.zip">Release 4.1.5</a> |