| Age | Commit message (Expand) | Author | Files | Lines |
| 2017-03-06 | Use several C++11 features as examples so problems with these features are seen. | Vicente | 1 | -1/+1 |
| 2017-01-22 | Remove extraneous "void". | Neil | 1 | -1/+1 |
| 2016-10-06 | Word selection, navigation, and manipulation is now performed on characters | Neil | 1 | -14/+22 |
| 2016-08-20 | Make some methods const where reasonable. | Neil | 1 | -1/+1 |
| 2016-01-31 | Bug [#1799]. Folds unfolded when two fold regions are merged by either deleting | Markus Nißl | 1 | -0/+4 |
| 2015-12-31 | Treat Unicode line ends like common line ends when maintaining fold state. | Neil | 1 | -0/+1 |
| 2015-12-04 | Fix some problems with out-of-bounds access for protected text. | Neil | 1 | -0/+1 |
| 2015-11-20 | Remove line end whitespace. | Neil | 1 | -2/+2 |
| 2015-11-11 | Implemented idle styling. This allows painting without first styling all visible | Neil | 1 | -0/+2 |
| 2015-07-20 | Use Sci_Position when required to implement interfaces. | Neil | 1 | -19/+19 |
| 2015-06-11 | Added MultipleSelectAddNext, MultipleSelectAddEach, IsRangeWord, and | Neil | 1 | -4/+4 |
| 2015-06-04 | Move FindText flag decoding from caller to function to minimize code and chance | Neil | 1 | -2/+1 |
| 2015-02-19 | Add methods for converting between byte positions and UTF-16 code point posit... | Neil Hodgson | 1 | -0/+2 |
| 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 | -1/+16 |
| 2014-07-24 | Mark const methods const. | Neil | 1 | -1/+1 |
| 2014-07-23 | Avoid shadowed names mostly in method prototypes. Turn off shadow | Neil | 1 | -1/+1 |
| 2014-07-18 | Added the tentative undo feature. This is useful for IMEs that want to display | Neil | 1 | -0/+6 |
| 2014-06-23 | Use Range type for hotspot to simplify manipulation. | Neil | 1 | -0/+4 |
| 2014-05-24 | Removing style byte indicators. | Neil | 1 | -5/+0 |
| 2014-04-22 | Hoisting some calculations into classes: ContractionState::DisplayLastFromDoc | Neil Hodgson | 1 | -0/+8 |
| 2014-04-16 | Allow filtering of insertions. | Neil | 1 | -5/+7 |
| 2013-12-15 | Make single argument constructors explicit to avoid unexpected conversions. | Neil | 1 | -2/+2 |
| 2013-12-15 | Format normalization - whitespace and braces made consistent. | Neil | 1 | -5/+5 |
| 2013-07-22 | Added the character representation feature. | Neil | 1 | -0/+3 |
| 2013-07-11 | Include case conversion data in Scintilla so that all platforms will perform | Neil | 1 | -18/+0 |
| 2013-06-29 | Bug: [#1483]. Split GetRelativePosition into 2 calls one for moving between c... | Neil | 1 | -1/+2 |
| 2013-06-27 | Bug: [#1483]. Adding StyleContext::GetRelativeCharacter for character-oriente... | nyamatongwe | 1 | -0/+1 |
| 2013-05-24 | Made methods const where they can be and are logically const as well. | nyamatongwe | 1 | -32/+32 |
| 2013-05-05 | Removed nethods that are no longer used and are less safe than alternatives. | nyamatongwe | 1 | -1/+0 |
| 2013-05-01 | Replacing raw pointers and allocations with std::vector and std::string. | nyamatongwe | 1 | -0/+1 |
| 2013-04-28 | Use std::vector for list of watchers instead of manual management. | nyamatongwe | 1 | -7/+7 |
| 2013-04-28 | Removed unused members. | nyamatongwe | 1 | -3/+0 |
| 2013-04-19 | Remove unused methods. | nyamatongwe | 1 | -6/+0 |
| 2013-01-19 | Support the three Unicode line ends NEL, LS, and PS in CellBuffer, Document, | nyamatongwe | 1 | -0/+4 |
| 2013-01-19 | To allow for new line end sequences implement IsPositionInLineEnd on the | nyamatongwe | 1 | -0/+1 |
| 2013-01-19 | Implement APIs for Unicode line ends and substyles and expose to | nyamatongwe | 1 | -3/+5 |
| 2012-09-04 | Cache the CaseFolder object between FindText calls so that finding many insta... | nyamatongwe | 1 | -1/+5 |
| 2012-05-29 | add CharClassifier::GetCharsOfClass | Mook | 1 | -0/+1 |
| 2012-05-26 | Add GetRangePointer and GetGapPosition methods. | nyamatongwe | 1 | -0/+2 |
| 2012-05-26 | For case-insensitive UTF-8 searching, use UTF8Classify for finding valid | nyamatongwe | 1 | -1/+0 |
| 2011-11-16 | Bug #3283519. CountCharacters added to count the number of | nyamatongwe | 1 | -0/+1 |
| 2011-10-26 | Implement ILoader interface so that clients can load documents from | nyamatongwe | 1 | -2/+4 |
| 2011-09-23 | Optimized MarkerNext so it can be much faster when no marker ever set | nyamatongwe | 1 | -0/+1 |
| 2011-07-11 | Avoid shadowing of fields even for static methods to stop warnings. | nyamatongwe | 1 | -1/+1 |
| 2011-07-02 | Folding related fixes. Initiated by bug #3323805. | Marko Njezic | 1 | -19/+18 |
| 2011-05-13 | Break measurement of text into reasonable sized segments similar | nyamatongwe | 1 | -0/+1 |
| 2011-04-27 | Optimize fold marker highlight. Feature #3282649. | nyamatongwe | 1 | -1/+1 |
| 2011-04-16 | Better highlight drawing where fold header has no subordinates. Bug #3279730. | nyamatongwe | 1 | -6/+6 |
| 2011-04-07 | Add highlighting of current folding block. Feature #3147069. | nyamatongwe | 1 | -0/+42 |