2009-04-24 23:35:41 +00:00
<?xml version="1.0"?>
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< html xmlns = "http://www.w3.org/1999/xhtml" >
< head >
< meta name = "generator" content = "HTML Tidy, see www.w3.org" / >
< meta name = "generator" content = "SciTE" / >
< meta http-equiv = "Content-Type" content = "text/html; charset=iso-8859-1" / >
< meta name = "keywords" content = "Scintilla, SciTE, Editing Component, Text Editor" / >
< meta name = "Description"
content="www.scintilla.org is the home of the Scintilla editing component and SciTE text editor application." />
Update scintilla 5.3.4 and lexilla 5.2.4 with:
https://www.scintilla.org/scintilla534.zip
Released 8 March 2023.
Add multithreaded wrap to significantly improve performance of wrapping large files.
More typesafe bindings of *Full APIs in ScintillaCall. Feature #1477.
Fix overlapping of text with line end wrap marker. Bug #2378.
Fix clipping of line end wrap symbol for SC_WRAPVISUALFLAGLOC_END_BY_TEXT.
Where a multi-byte character contains multiple styles, display each byte as a representation. This makes it easier to see and fix lexers that change styles mid-character, commonly because they use fixed size buffers.
Fix a potential crash with autocompletion list fill-ups where a SCN_CHARADDED handler retriggered an autocompletion list, but with no items that match the typed character.
lexilla523
Released 8 March 2023.
Add scripts/PromoteNew.bat script to promote .new files after checking.
Makefile: Remove 1024-byte line length limit..
Ruby: Add new lexical classes for % literals SCE_RB_STRING_W (%w non-interpolable string array), SCE_RB_STRING_I (%i non-interpolable symbol array), SCE_RB_STRING_QI (%I interpolable symbol array), and SCE_RB_STRING_QS (%s symbol). Issue #124.
Ruby: Disambiguate %= which may be a quote or modulo assignment. Issue #124, Bug #1255, Bug #2182.
Ruby: Fix additional fold level for single character in SCE_RB_STRING_QW. Issue #132.
Ruby: Set SCE_RB_HERE_QQ for unquoted and double-quoted heredocs and SCE_RB_HERE_QX for backticks-quoted heredocs. Issue #134.
Ruby: Recognise #{} inside SCE_RB_HERE_QQ and SCE_RB_HERE_QX. Issue #134.
Ruby: Improve regex and heredoc recognition. Issue #136.
Ruby: Highlight #@, #@@ and #$ style interpolation. Issue #140.
Ruby: Fix folding for multiple heredocs started on one line. Fix folding when there is a space after heredoc opening delimiter. Issue #135.
YAML: Remove 1024-byte line length limit.
https://www.scintilla.org/lexilla524.zip
Released 13 March 2023.
C++: Fix failure to recognize keywords containing upper case. Issue #149.
GDScript: Support % and $ node paths. Issue #145, Pull request #146.
Close #13338
2023-03-10 02:37:21 +00:00
< meta name = "Date.Modified" content = "20230308" / >
2019-05-04 18:14:48 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" / >
2009-04-24 23:35:41 +00:00
< style type = "text/css" >
2010-07-12 22:19:51 +00:00
#versionlist {
margin: 0;
padding: .5em;
list-style-type: none;
color: #FFCC99;
background: #000000;
}
#versionlist li {
margin-bottom: .5em;
}
#menu {
margin: 0;
padding: .5em 0;
list-style-type: none;
font-size: larger;
background: #CCCCCC;
}
#menu li {
margin: 0;
padding: 0 .5em;
display: inline;
2009-04-24 23:35:41 +00:00
}
< / style >
2010-07-12 22:19:51 +00:00
< script type = "text/javascript" >
2009-04-24 23:35:41 +00:00
function IsRemote() {
var loc = '' + window.location;
2019-05-04 18:14:48 +00:00
return (loc.indexOf('http:')) != -1 || (loc.indexOf('https:') != -1);
2009-04-24 23:35:41 +00:00
}
< / script >
< title >
Scintilla and SciTE
< / title >
< / head >
< body bgcolor = "#FFFFFF" text = "#000000" >
< table bgcolor = "#000000" width = "100%" cellspacing = "0" cellpadding = "0" border = "0" >
< tr >
< td width = "256" >
< img src = "SciWord.jpg" height = "78" width = "256" alt = "Scintilla" / >
< / td >
< td width = "40%" align = "left" >
2013-08-28 00:44:27 +00:00
< font color = "#FFCC99" size = "4" > A free source code editing component for Win32,
2022-01-04 23:07:50 +00:00
GTK, and macOS< / font >
2009-04-24 23:35:41 +00:00
< / td >
< td width = "40%" align = "right" >
Update scintilla 5.3.4 and lexilla 5.2.4 with:
https://www.scintilla.org/scintilla534.zip
Released 8 March 2023.
Add multithreaded wrap to significantly improve performance of wrapping large files.
More typesafe bindings of *Full APIs in ScintillaCall. Feature #1477.
Fix overlapping of text with line end wrap marker. Bug #2378.
Fix clipping of line end wrap symbol for SC_WRAPVISUALFLAGLOC_END_BY_TEXT.
Where a multi-byte character contains multiple styles, display each byte as a representation. This makes it easier to see and fix lexers that change styles mid-character, commonly because they use fixed size buffers.
Fix a potential crash with autocompletion list fill-ups where a SCN_CHARADDED handler retriggered an autocompletion list, but with no items that match the typed character.
lexilla523
Released 8 March 2023.
Add scripts/PromoteNew.bat script to promote .new files after checking.
Makefile: Remove 1024-byte line length limit..
Ruby: Add new lexical classes for % literals SCE_RB_STRING_W (%w non-interpolable string array), SCE_RB_STRING_I (%i non-interpolable symbol array), SCE_RB_STRING_QI (%I interpolable symbol array), and SCE_RB_STRING_QS (%s symbol). Issue #124.
Ruby: Disambiguate %= which may be a quote or modulo assignment. Issue #124, Bug #1255, Bug #2182.
Ruby: Fix additional fold level for single character in SCE_RB_STRING_QW. Issue #132.
Ruby: Set SCE_RB_HERE_QQ for unquoted and double-quoted heredocs and SCE_RB_HERE_QX for backticks-quoted heredocs. Issue #134.
Ruby: Recognise #{} inside SCE_RB_HERE_QQ and SCE_RB_HERE_QX. Issue #134.
Ruby: Improve regex and heredoc recognition. Issue #136.
Ruby: Highlight #@, #@@ and #$ style interpolation. Issue #140.
Ruby: Fix folding for multiple heredocs started on one line. Fix folding when there is a space after heredoc opening delimiter. Issue #135.
YAML: Remove 1024-byte line length limit.
https://www.scintilla.org/lexilla524.zip
Released 13 March 2023.
C++: Fix failure to recognize keywords containing upper case. Issue #149.
GDScript: Support % and $ node paths. Issue #145, Pull request #146.
Close #13338
2023-03-10 02:37:21 +00:00
< font color = "#FFCC99" size = "3" > Release version 5.3.4< br / >
Site last modified March 8 2023< / font >
2009-04-24 23:35:41 +00:00
< / td >
< td width = "20%" >
< / td >
< / tr >
< / table >
< table bgcolor = "#000000" width = "100%" cellspacing = "0" cellpadding = "0" border = "0" >
< tr >
2022-05-25 20:16:39 +00:00
< td width = "100%" style = "background: url(SciBreak.jpg) no-repeat;height:150px;" >
2009-04-24 23:35:41 +00:00
< / td >
< / tr >
< / table >
2010-07-12 22:19:51 +00:00
< ul id = "versionlist" >
Update scintilla 5.3.4 and lexilla 5.2.4 with:
https://www.scintilla.org/scintilla534.zip
Released 8 March 2023.
Add multithreaded wrap to significantly improve performance of wrapping large files.
More typesafe bindings of *Full APIs in ScintillaCall. Feature #1477.
Fix overlapping of text with line end wrap marker. Bug #2378.
Fix clipping of line end wrap symbol for SC_WRAPVISUALFLAGLOC_END_BY_TEXT.
Where a multi-byte character contains multiple styles, display each byte as a representation. This makes it easier to see and fix lexers that change styles mid-character, commonly because they use fixed size buffers.
Fix a potential crash with autocompletion list fill-ups where a SCN_CHARADDED handler retriggered an autocompletion list, but with no items that match the typed character.
lexilla523
Released 8 March 2023.
Add scripts/PromoteNew.bat script to promote .new files after checking.
Makefile: Remove 1024-byte line length limit..
Ruby: Add new lexical classes for % literals SCE_RB_STRING_W (%w non-interpolable string array), SCE_RB_STRING_I (%i non-interpolable symbol array), SCE_RB_STRING_QI (%I interpolable symbol array), and SCE_RB_STRING_QS (%s symbol). Issue #124.
Ruby: Disambiguate %= which may be a quote or modulo assignment. Issue #124, Bug #1255, Bug #2182.
Ruby: Fix additional fold level for single character in SCE_RB_STRING_QW. Issue #132.
Ruby: Set SCE_RB_HERE_QQ for unquoted and double-quoted heredocs and SCE_RB_HERE_QX for backticks-quoted heredocs. Issue #134.
Ruby: Recognise #{} inside SCE_RB_HERE_QQ and SCE_RB_HERE_QX. Issue #134.
Ruby: Improve regex and heredoc recognition. Issue #136.
Ruby: Highlight #@, #@@ and #$ style interpolation. Issue #140.
Ruby: Fix folding for multiple heredocs started on one line. Fix folding when there is a space after heredoc opening delimiter. Issue #135.
YAML: Remove 1024-byte line length limit.
https://www.scintilla.org/lexilla524.zip
Released 13 March 2023.
C++: Fix failure to recognize keywords containing upper case. Issue #149.
GDScript: Support % and $ node paths. Issue #145, Pull request #146.
Close #13338
2023-03-10 02:37:21 +00:00
< li > Version 5.3.4 adds multithreaded wrapping.< / li >
2023-02-09 16:57:24 +00:00
< li > Version 5.3.3 fixes minor bugs in APIs and platform layers.< / li >
2022-12-10 12:35:16 +00:00
< li > Version 5.3.2 adds SCI_REPLACETARGETMINIMAL to modify text without marking unchanged start and end text in change history.< / li >
2022-10-12 18:45:40 +00:00
< li > Version 5.3.1 can represent invisible text with a character to simplify editing and provide summarized views.< / li >
2022-08-27 07:35:52 +00:00
< li > Version 5.3.0 adds change history.< / li >
2022-08-14 10:23:34 +00:00
< li > Version 5.2.4 fixes failures on GTK with multi-threaded layout.< / li >
2010-07-12 22:19:51 +00:00
< / ul >
< ul id = "menu" >
2019-05-04 18:14:48 +00:00
< li id = "remote1" > < a href = "https://www.scintilla.org/SciTEImage.html" > Screenshot< / a > < / li >
< li id = "remote2" > < a href = "https://www.scintilla.org/ScintillaDownload.html" > Download< / a > < / li >
2022-05-25 20:16:39 +00:00
< li > < a href = "ScintillaDoc.html" > Documentation< / a > < / li >
< li > < a href = "ScintillaToDo.html" > Bugs< / a > < / li >
2022-01-04 23:07:50 +00:00
< li id = "remote3" > < a href = "https://www.scintilla.org/Lexilla.html" > Lexilla< / a > < / li >
< li id = "remote4" > < a href = "https://www.scintilla.org/SciTE.html" > SciTE< / a > < / li >
2022-05-25 20:16:39 +00:00
< li > < a href = "ScintillaHistory.html" > History< / a > < / li >
< li > < a href = "ScintillaRelated.html" > Related< / a > < / li >
2022-01-04 23:07:50 +00:00
< li id = "remote5" > < a href = "https://www.scintilla.org/Privacy.html" > Privacy< / a > < / li >
2010-07-12 22:19:51 +00:00
< / ul >
2009-04-24 23:35:41 +00:00
< script type = "text/javascript" language = "JavaScript" > < ! - -
2010-07-12 22:19:51 +00:00
if (!IsRemote()) { //if NOT remote...
document.getElementById('remote1').style.display='none';
document.getElementById('remote2').style.display='none';
document.getElementById('remote3').style.display='none';
2019-05-04 18:14:48 +00:00
document.getElementById('remote4').style.display='none';
2022-01-04 23:07:50 +00:00
document.getElementById('remote5').style.display='none';
2009-04-24 23:35:41 +00:00
}
//-->< / script >
< p >
2022-05-25 20:16:39 +00:00
< a href = "ScintillaDoc.html" > Scintilla< / a > is a free source code editing component.
2019-05-04 18:14:48 +00:00
It comes with complete source code and a < a href = "https://www.scintilla.org/License.txt" > license< / a > that
2009-04-24 23:35:41 +00:00
permits use in any free project or commercial product.
< / p >
< p >
As well as features found in standard text editing components, Scintilla includes features
especially useful when editing and debugging source code.
These include support for syntax styling, error indicators, code completion and call tips.
The selection margin can contain markers like those used in debuggers to indicate
breakpoints and the current line. Styling choices are more open than with many editors,
allowing the use of proportional fonts, bold and italics, multiple foreground and background
colours and multiple fonts.
< / p >
< p >
2022-01-04 23:07:50 +00:00
Current development occurs on the default branch as 5.* which requires a recent
2019-05-04 18:14:48 +00:00
C++ compiler that supports C++17.
< / p >
< p >
2022-01-04 23:07:50 +00:00
< a href = "https://www.scintilla.org/Lexilla.html" > Lexilla< / a > is a library of lexers that can
be used with Scintilla.
2019-05-04 18:14:48 +00:00
< / p >
< p >
< a href = "https://www.scintilla.org/SciTE.html" > SciTE< / a > is a SCIntilla based Text Editor. Originally built to
2009-04-24 23:35:41 +00:00
demonstrate Scintilla, it has grown to be a generally useful editor with facilities for
building and running programs. It is best used for jobs with simple configurations - I use it
for building test and demonstration programs as well as SciTE and Scintilla, themselves.
< / p >
< p >
Development of Scintilla started as an effort to improve the text editor in PythonWin. After
being frustrated by problems in the Richedit control used by PythonWin, it looked like the
best way forward was to write a new edit control. The biggest problem with Richedit and other
similar controls is that they treat styling changes as important persistent changes to the
document so they are saved into the undo stack and set the document's dirty flag. For source
code, styling should not be persisted as it can be mechanically recreated.
< / p >
< p >
2022-01-04 23:07:50 +00:00
Scintilla and SciTE are currently available for Intel Win32, macOS, and Linux compatible operating
systems with GTK. They have been run on Windows XP, Windows 7, macOS 10.9+, and on Ubuntu 18.04
2019-07-21 13:26:02 +00:00
with GTK 2.24. < a href = "https://www.scintilla.org/SciTEImage.html" > Here is a screenshot of
2009-04-24 23:35:41 +00:00
SciTE.< / a > < br / >
< / p >
< p >
2019-05-04 18:14:48 +00:00
You can < a href = "https://www.scintilla.org/ScintillaDownload.html" > download Scintilla.< / a >
2009-04-24 23:35:41 +00:00
< / p >
< p >
2013-08-28 00:44:27 +00:00
The source code can be downloaded via Mercurial at the Source Forge
2019-05-04 18:14:48 +00:00
< a href = "https://sourceforge.net/projects/scintilla/" > Scintilla project page< / a > .
< / p >
< p >
2022-05-25 20:16:39 +00:00
< a href = "ScintillaRelated.html" > Related sites.< / a >
2009-04-24 23:35:41 +00:00
< / p >
< p >
2022-05-25 20:16:39 +00:00
< a href = "ScintillaToDo.html" > Bugs and To Do list.< / a >
2009-04-24 23:35:41 +00:00
< / p >
< p >
2022-05-25 20:16:39 +00:00
< a href = "ScintillaHistory.html" > History and contribution credits.< / a >
2009-04-24 23:35:41 +00:00
< / p >
< p >
2019-05-04 18:14:48 +00:00
< a href = "https://www.scintilla.org/Icons.html" > Icons that can be used with Scintilla.< / a >
2009-04-24 23:35:41 +00:00
< / p >
< p >
Questions and comments about Scintilla should be directed to the
2019-05-04 18:14:48 +00:00
< a href = "https://groups.google.com/forum/#!forum/scintilla-interest" > scintilla-interest< / a >
2009-04-24 23:35:41 +00:00
mailing list,
which is for discussion of Scintilla and related projects, their bugs and future features.
2015-06-07 21:19:26 +00:00
This is a low traffic list, averaging less than 20 messages per week.
2009-04-24 23:35:41 +00:00
To avoid spam, only list members can write to the list.
New versions of Scintilla are announced on scintilla-interest and may also be received by SourceForge
members by clicking on the Monitor column icon for "scintilla" on
< a href = "https://sourceforge.net/project/showfiles.php?group_id=2439" > the downloads page< / a > .
< br / >
< / p >
2019-05-04 18:14:48 +00:00
There is a < a href = "https://sourceforge.net/projects/scintilla/" > Scintilla project page< / a >
2010-07-12 22:19:51 +00:00
hosted on
2009-04-24 23:35:41 +00:00
< script type = "text/javascript" language = "JavaScript" >
<!--
if (IsRemote()) {
2019-05-04 18:14:48 +00:00
document.write('< a href = "https://sourceforge.net/projects/scintilla/" > ');
document.write('< img src = "https://sflogo.sourceforge.net/sflogo.php?group_id=2439&type=8" width = "80" height = "15" alt = "Get Scintilla at SourceForge.net. Fast, secure and Free Open Source software downloads" / > < / a > ');
2009-04-24 23:35:41 +00:00
} else {
2019-05-04 18:14:48 +00:00
document.write('< a href = "https://sourceforge.net/projects/scintilla/" > SourceForge< \/a>');
2009-04-24 23:35:41 +00:00
}
//-->
< / script >
2010-07-12 22:19:51 +00:00
< noscript >
2019-05-04 18:14:48 +00:00
< a href = "https://sourceforge.net/projects/scintilla/" >
< img src = "https://sflogo.sourceforge.net/sflogo.php?group_id=2439&type=8" width = "80" height = "15" alt = "Get Scintilla at SourceForge.net. Fast, secure and Free Open Source software downloads" / > < / a >
2010-07-12 22:19:51 +00:00
< / noscript >
2010-08-21 23:59:56 +00:00
< / body >
2009-04-24 23:35:41 +00:00
< / html >