Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-09-16 | Use nullptr in Document where appropriate. | Neil | 1 | -10/+10 | |
2018-09-16 | Moved declaration to avoid warnings from linters. | Neil | 1 | -2/+2 | |
2018-07-24 | Fix reversion in revision 7063 which removed folding when changing code page. | Neil | 1 | -0/+1 | |
Changing code page now causes full restyle. | |||||
2018-07-10 | Optional indexing of line starts in UTF-8 documents by UTF-32 code points and | Neil | 1 | -0/+22 | |
UTF-16 code units added. | |||||
2018-06-10 | Using noexcept for simple functions. | Neil | 1 | -6/+6 | |
2018-06-10 | Updated the code and comment for running a regex over multiple lines at once | Neil | 1 | -8/+14 | |
instead of breaking up into lines. Using the preprocessor to hide the multiline code instead of comments so that it is easier to experiment with. | |||||
2018-05-21 | Draw invalid bytes in DBCS when detected as blobs in a similar way to UTF-8. | Neil Hodgson | 1 | -0/+87 | |
2018-05-16 | Use noexcept method to preserve noexcept. | Neil | 1 | -1/+1 | |
2018-05-16 | Fix regex crash reported with libstdc++ on macOS that occurs | Neil Hodgson | 1 | -7/+0 | |
when the regex has a locale imbued. | |||||
2018-05-14 | Use string_view for UniConversion functions. | Neil | 1 | -4/+5 | |
2018-05-14 | Include <string_view> to allow future use in Platform interface and Unicode. | Neil | 1 | -0/+1 | |
2018-05-03 | Specify type of std::clamp to avoid casting arguments. | Neil | 1 | -1/+1 | |
2018-04-26 | Use <chrono> for platform-independent timing and remove ElapsedTime. | Neil | 1 | -4/+6 | |
Also use #if for painting measurement as there are 7 sections of code to enable. | |||||
2018-04-22 | Remove casts between char and unsigned char where possible. | Neil | 1 | -7/+7 | |
2018-04-21 | Tighten definition of regular expression iterators so they are noexcept and | Neil | 1 | -69/+96 | |
define all the standard member functions. This cascades to all methods called by the iterators, affecting Document, CellBuffer, Partitioning, SplitVector and UTF-8 and DBCS functions. Other trivial functions declared noexcept. | |||||
2018-04-19 | Casting changed in many places, due to change to 64-bit variables for 64-bit | Neil | 1 | -93/+96 | |
builds. Some of the changes ensure no truncation while others remove casts that are no longer needed because the externally visible Sci_Position is now identical to Sci::Position. Some extra methods (CellBuffer::UCharAt and Document::SciLineFromPosition) added to avoid casting in client code. Sci::Line is currently identical to Sci::Position but it could be made smaller so lines have Sci::Line types and are cast. Some arguments widened. | |||||
2018-04-19 | Remove casts by using harmonized types. Drop NUL termination that is not needed. | Neil | 1 | -16/+13 | |
2018-04-17 | Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than 2 GigaBytes. | Neil | 1 | -2/+7 | |
This option is provisional and experimental. | |||||
2018-03-28 | Templatize decorations to allow 32-bit or 64-bit positions. | Neil | 1 | -1/+1 | |
2018-04-16 | Determine if line start or end pattern before loop. | Neil | 1 | -5/+7 | |
2018-04-13 | Use 'override' for methods that are overridden. | Neil | 1 | -28/+28 | |
Group some method declarations and definitions for AddRef/Release and PerLine. | |||||
2018-04-13 | Fix bug with regular expression searches failing to match at line start or end. | Neil | 1 | -16/+4 | |
This was a work-around for infinite loops when replacing empty matches and this is now the application's responsibility. | |||||
2018-04-11 | Remove workaround for problems with noexcept. | Neil | 1 | -10/+2 | |
2018-03-28 | Split decorations into interface and implementation. | Neil | 1 | -4/+6 | |
2018-03-27 | Return a FillResult struct from RunStyles::FillRange instead of modifying | Neil | 1 | -4/+4 | |
arguments as that is clumsy when converting types. | |||||
2018-03-24 | Feature [feature-requests:#1212]. Move Unicode conversions into UniConversion. | Zufu Liu | 1 | -1/+0 | |
Move Unicode conversion functions UnicodeFromUTF8 and UTF8FromUTF32Character into UniConversion. | |||||
2018-03-22 | Feature [feature-requests:#1211]. Use pre-computed table for UTF8BytesOfLead. | Zufu Liu | 1 | -2/+0 | |
Friendlier treatment of invalid UTF-8. Add tests for UniConversion handling invalid UTF-8. Simplify UTF8Classify tests. | |||||
2018-03-09 | Use Position/Line/int more accurately in preparation for large documents. | Neil | 1 | -6/+6 | |
2018-03-01 | Mark variables as const where simple. | Neil | 1 | -49/+49 | |
2018-03-01 | Use make_unique in preference to new. | Neil | 1 | -5/+5 | |
From Effective Modern C++ Item 21. | |||||
2018-02-02 | Implement SC_DOCUMENTOPTION_STYLES_NONE. | Neil | 1 | -1/+2 | |
2018-01-28 | Replace Sci::clamp with C++ standard std::clamp function. | Neil | 1 | -1/+1 | |
std::clamp is from C++17. | |||||
2018-01-28 | Use std::abs in preference to abs as std::abs is generic and abs casts to int | Neil | 1 | -1/+2 | |
which may drop information. | |||||
2017-12-13 | Use explicit typedefs instead of deprecated derivation from std::iterator. | Greg Smith | 1 | -3/+21 | |
This fixes a C4996 / STL4015 warning from Visual C++ 2017.5 that the std::iterator class template is deprecated in C++17. | |||||
2017-10-16 | Use const for interface CharacterIndexer and its implementation DocumentIndexer. | Neil | 1 | -3/+3 | |
2017-09-11 | The Scintilla namespace is always active for internal symbols and for the lexer | Neil | 1 | -12/+0 | |
interfaces ILexer4 and IDocument. | |||||
2017-08-28 | New header ILoader.h defines ILoader interface as it does not belong in ↵ | Neil | 1 | -0/+1 | |
ILexer.h. | |||||
2017-06-22 | Merge Ilexer and ILexerWithSubStyles into ILexer4 to avoid need for version | Neil | 1 | -5/+1 | |
checking in 4.0. Use lvRelease4 ID. | |||||
2017-07-09 | Bug [#1955]. The data parameter to ILoader::AddData made const. | Justin Dailey | 1 | -1/+1 | |
2017-06-22 | Update IDocument for version 4. Drop IDocumentWithLineEnd interface to just have | Neil | 1 | -2/+2 | |
IDocument but with all the methods from IDocumentWithLineEnd. This removes version checking (for now). Use dvRelease4 ID. Drop mask argument to StartStyling. | |||||
2017-06-22 | Cast between Sci_Position.h types used for lexers and Position.h types used in | Neil | 1 | -72/+83 | |
core to allow the Sci_Position.h types to widen to 64-bits. | |||||
2017-06-19 | The default encoding is now UTF-8. | Neil | 1 | -1/+1 | |
2017-06-12 | Removed unused functions and methods from Platform.h. | Neil | 1 | -1/+1 | |
Replaced Platform::Clamp with Sci::clamp but will later change this to std::clamp once on full C++17 compilers. Drop MouseButtonBounce workaround for very early GTK+/Linux. | |||||
2017-05-21 | Use unique_ptr and forward_list to regularize PerLine data structures. | Neil | 1 | -0/+1 | |
2017-05-10 | Use unique_ptr fpr Partitioning, RunStyles, SparseVector, PositionCache and | Neil | 1 | -43/+58 | |
Document. | |||||
2017-05-02 | More consistent use of size_t when converting Unicode formats. | Neil | 1 | -1/+1 | |
2017-04-29 | Use std::unique_ptr, std::vector, and move construction to simplify UndoHistory | Neil | 1 | -3/+3 | |
and make it easier to modify. Remove out of date warning suppression. | |||||
2017-04-22 | Using unique_ptr to simplify ownership of images, case folder, and list box. | Neil | 1 | -9/+3 | |
2017-04-22 | Encapsulate the LexInterface of Document. | Neil | 1 | -4/+8 | |
2017-04-09 | Further use of range-for. | Neil | 1 | -24/+24 | |