Updated to Scintilla 5.4.1 & Lexilla 5.3.0
Scintilla 5.4.1
https://www.scintilla.org/scintilla541.zip
Released 27 December 2023.
1. Add IDocumentEditable interface to allow efficient interaction with document objects which may not be visible in a Scintilla instance. This feature is provisonal and may change before being declared stable. For better type-safety, the ScintillaCall C++ API uses IDocumentEditable* where void* was used before which may require changes to client code that uses document pointer APIs DocPointer, SetDocPointer, CreateDocument, AddRefDocument, and ReleaseDocument.
2. Ctrl-click on a selection deselects it in multiple selection mode.
3. Add SCI_SELECTIONFROMPOINT for modifying multiple selections.
4. Add SCI_SETMOVEEXTENDSSELECTION and SCI_CHANGESELECTIONMODE to simplify selection mode manipulation.
5. Improve performance of global replace by reducing cache invalidation overhead. [Feature #1502](https://sourceforge.net/p/scintilla/feature-requests/1502/).
6. Fix regular expression search for "\<" matching beginning of search when not beginning of word and for "\>" not matching line end. [Bug #2157](https://sourceforge.net/p/scintilla/bugs/2157/).
7. Fix regular expression search failure when search for "\<" followed by search for "\>". [Bug #2413](https://sourceforge.net/p/scintilla/bugs/2413/).
8. Fix regular expression assertion (^, $, \b. \B) failures when using SCFIND_CXX11REGEX. [Bug #2405](https://sourceforge.net/p/scintilla/bugs/2405/).
9. Fix regular expression bug in reverse direction where shortened match returned. [Bug #2405](https://sourceforge.net/p/scintilla/bugs/2405/).
10. Avoid character fragments in regular expression search results. [Bug #2405](https://sourceforge.net/p/scintilla/bugs/2405/).
11. With a document that does not have the SC_DOCUMENTOPTION_TEXT_LARGE option set, allocating more than 2G (calling SCI_ALLOCATE or similar) will now fail with SC_STATUS_FAILURE.
12. Protect SCI_REPLACETARGET, SCI_REPLACETARGETMINIMAL, and SCI_REPLACETARGETRE from application changing target in notification handlers. [Bug #2289](https://sourceforge.net/p/scintilla/bugs/2289/).
Lexilla 5.3.0
https://www.scintilla.org/lexilla530.zip
Released 27 December 2023.
1. Fix calling AddStaticLexerModule by defining as C++ instead of C which matches header. [Bug #2421](https://sourceforge.net/p/scintilla/bugs/2421/).
2. Bash: Fix shift operator << incorrectly recognized as here-doc. [Issue #215](https://github.com/ScintillaOrg/lexilla/issues/215).
3. Bash: Fix termination of '${' with first unquoted '}' instead of nesting. [Issue #216](https://github.com/ScintillaOrg/lexilla/issues/216).
4. HTML: JavaScript double-quoted strings may escape line end with '\'. [Issue #214](https://github.com/ScintillaOrg/lexilla/issues/214).
5. Lua: recognize --- doc comments. Defined by [LDoc](https://github.com/lunarmodules/ldoc). Does not recognize --[[-- doc comments which seem less common.
Close #14375
2023-11-19 17:46:55 +00:00
|
|
|
-- Enumerate all styles: 0 to 20
|
|
|
|
-- 3 (comment doc) is not currently produced by lexer
|
|
|
|
|
|
|
|
--[[ comment=1 ]]
|
|
|
|
|
|
|
|
--[[ whitespace=0 ]]
|
|
|
|
-- w
|
|
|
|
|
|
|
|
-- comment line=2
|
|
|
|
|
|
|
|
--- comment doc=3
|
|
|
|
-- still comment doc
|
|
|
|
|
|
|
|
-- still comment doc
|
|
|
|
3 -- comment doc broken only by code
|
|
|
|
|
|
|
|
-- number=4
|
|
|
|
37
|
|
|
|
|
|
|
|
-- keyword=5
|
|
|
|
local a
|
|
|
|
|
|
|
|
-- double-quoted-string=6
|
|
|
|
"str"
|
|
|
|
|
|
|
|
-- single-quoted-string=7
|
|
|
|
'str'
|
|
|
|
|
|
|
|
-- literal string=8
|
|
|
|
[[ literal ]]
|
|
|
|
|
|
|
|
-- unused preprocessor=9
|
|
|
|
$if
|
|
|
|
|
|
|
|
-- operator=10
|
|
|
|
*
|
|
|
|
|
|
|
|
-- identifier=11
|
|
|
|
identifier=1
|
|
|
|
|
|
|
|
-- string EOL=12
|
|
|
|
"unclosed
|
|
|
|
|
|
|
|
-- keyword 2=13
|
|
|
|
print
|
|
|
|
|
|
|
|
-- keyword 3=14
|
|
|
|
keyword3
|
|
|
|
|
|
|
|
-- keyword 4=15
|
|
|
|
keyword4
|
|
|
|
|
|
|
|
-- keyword 5=16
|
|
|
|
keyword5
|
|
|
|
|
|
|
|
-- keyword 6=17
|
|
|
|
keyword6
|
|
|
|
|
|
|
|
-- keyword 7=18
|
|
|
|
keyword7
|
|
|
|
|
|
|
|
-- keyword 8=19
|
|
|
|
keyword8
|
|
|
|
|
|
|
|
-- label=20
|
|
|
|
::label::
|
Update to scintilla 5.5.0 & Lexilla 5.3.2
Sintilla Release 5.5.0 (https://www.scintilla.org/scintilla550.zip)
Released 23 April 2024.
Add elements for inactive additional selections SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_TEXT and SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_BACK. When not set these default to SC_ELEMENT_SELECTION_INACTIVE_TEXT and SC_ELEMENT_SELECTION_INACTIVE_BACK. Bug #2417.
On Cocoa, avoid use of NSUserDefaults which will soon require justification when used in applications on the App Store.
Fix Win32 IME crash in windowed mode. Bug #2433.
Scale reverse arrow cursor for margins to match other cursors when user changes pointer size. Bug #2321.
Lexilla Release 5.3.2 (https://www.scintilla.org/lexilla532.zip)
Released 23 April 2024.
COBOL: Stop string literal continuing over line end. Issue #229.
COBOL: Stop doc comment assigning different styles to \r and \n at line end. Issue #229.
COBOL: Recognize keywords that start with 'V'. Issue #230.
COBOL: Recognize comments after tag or that start with '/'. Issue #231.
HTML: Implement substyles for tags, attributes, and identifiers SCE_H_TAG, SCE_H_ATTRIBUTE, SCE_HJ_WORD, SCE_HJA_WORD, SCE_HB_WORD, SCE_HP_WORD, SCE_HPHP_WORD.
HTML: Implement context-sensitive attributes. "tag.attribute" matches "attribute" only inside "tag".
HTML: Match standard handling of comments. Issue #232.
Lua: Implement substyles for identifiers SCE_LUA_IDENTIFIER.
Ruby: Allow non-ASCII here-doc delimiters. Issue #234.
Ruby: Allow modifier if, unless, while and until after heredoc delimiter. Issue #236.
Rust: Recognize raw identifiers. Issue #239, Pull request #240.
Close #15042
2024-04-24 16:45:59 +00:00
|
|
|
|
|
|
|
-- identifier substyles.11.1=128
|
|
|
|
moon
|