| Age | Commit message (Expand) | Author | Files | Lines |
| 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 |
| 2017-08-28 | New header ILoader.h defines ILoader interface as it does not belong in ILexe... | Neil | 1 | -0/+1 |
| 2017-06-22 | Merge Ilexer and ILexerWithSubStyles into ILexer4 to avoid need for version | Neil | 1 | -5/+1 |
| 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 |
| 2017-06-22 | Cast between Sci_Position.h types used for lexers and Position.h types used in | Neil | 1 | -72/+83 |
| 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 |
| 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 |
| 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 |
| 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 |
| 2017-04-06 | Added const where possible. | Neil | 1 | -47/+47 |
| 2017-04-01 | Standardize on C++ headers, remove headers that aren't needed and add <cstddef> | Neil | 1 | -5/+5 |
| 2017-03-31 | Prefer standard min/max over Platform's as adapts to changed types. | Neil | 1 | -3/+3 |
| 2017-03-31 | Hide decorations details a little. | Neil | 1 | -0/+4 |
| 2017-03-31 | Using Sci::Position and Sci::Line to mark variables that are document positions | Neil | 1 | -215/+215 |
| 2017-03-07 | Avoid potential problems with memcmp reading past end of object. | Neil | 1 | -2/+6 |
| 2017-03-06 | Use several C++11 features as examples so problems with these features are seen. | Vicente | 1 | -3/+3 |
| 2017-03-04 | Use C++11 keyword "override" for methods that override a base class. | Neil | 1 | -6/+6 |
| 2017-01-22 | Remove extraneous "void". | Neil | 1 | -1/+1 |
| 2016-11-07 | Specify 'noexcept' to use Clang with GNU <regex>. | Neil | 1 | -2/+10 |
| 2016-10-06 | Word selection, navigation, and manipulation is now performed on characters | Neil | 1 | -118/+344 |
| 2016-08-20 | Make some methods const where reasonable. | Neil | 1 | -1/+1 |
| 2016-04-28 | C++ 11 <regex> support built by default. | Neil | 1 | -3/+3 |
| 2016-03-26 | Fix truncation warning in 64-bit build. | Neil | 1 | -2/+2 |
| 2016-01-31 | Replace expressions to find level number of a fold level with function call. | Neil | 1 | -18/+18 |
| 2015-12-07 | Prefer StyleIndexAt over StyleAt to avoid problems with out-of-bounds access for | Neil | 1 | -2/+2 |
| 2015-11-20 | Remove line end whitespace. | Neil | 1 | -5/+5 |
| 2015-11-11 | Implemented idle styling. This allows painting without first styling all visible | Neil | 1 | -0/+28 |
| 2015-09-29 | Mark local functions as static. | Neil Hodgson | 1 | -1/+1 |
| 2015-09-04 | Bug [#1757]. Treat CRLF as two characters in SCI_COUNTCHARACTERS. | Neil | 1 | -2/+0 |
| 2015-07-27 | Add Position.h as a place-holder and to allow #include "Position.h" in source. | Neil | 1 | -0/+1 |
| 2015-07-20 | Use Sci_Position when required to implement interfaces. | Neil | 1 | -16/+16 |
| 2015-06-11 | Added MultipleSelectAddNext, MultipleSelectAddEach, IsRangeWord, and | Neil | 1 | -1/+1 |
| 2015-06-04 | Move FindText flag decoding from caller to function to minimize code and chance | Neil | 1 | -2/+5 |
| 2015-05-21 | Fix bug with TentativeUndo where the undo history was being damaged on OS X. | Neil Hodgson | 1 | -0/+2 |
| 2015-05-15 | Backed out changeset: 7caa35787c19 | Neil | 1 | -4/+5 |
| 2015-05-13 | Ensure SCI_POSITIONRELATIVE returns a position clamped into the document range | Neil | 1 | -5/+4 |
| 2015-02-19 | Add methods for converting between byte positions and UTF-16 code point posit... | Neil Hodgson | 1 | -0/+36 |
| 2015-01-22 | Fix compilation failure of C++11 <regex> on Windows using gcc. | Neil | 1 | -4/+5 |
| 2014-12-22 | Replace function UnicodeFromBytes with UnicodeFromUTF8 as they are exactly the | Neil | 1 | -15/+3 |
| 2014-10-03 | CountCharacters can be const so it is now. | Neil | 1 | -1/+1 |
| 2014-10-02 | Allow using C++11 <regex> for searches as a provisional feature. | Neil | 1 | -39/+462 |
| 2014-10-02 | Include <stdexcept> so that exceptions derived from std::runtime_error can be | Neil | 1 | -0/+1 |
| 2014-09-13 | Use const where possible in regular expression code. | Neil | 1 | -6/+6 |