| Age | Commit message (Expand) | Author | Files | Lines |
| 2020-07-28 | Fix position of marker symbols for SC_MARGIN_RTEXT which were being moved based | Neil | 1 | -5/+8 |
| 2020-07-16 | Make WrapMode an enum class for more type safety. | Neil | 4 | -14/+14 |
| 2020-07-16 | Rename validLevel to ValidLevel and make an enum class. | Neil | 4 | -20/+20 |
| 2020-07-16 | Rename typeOfFold to FoldPart and make an enum class. | Neil | 3 | -21/+21 |
| 2020-07-16 | Make AddNumber an enum class for more type safety. | Neil | 2 | -4/+4 |
| 2020-07-16 | Use enum class for selectionUnit (previously selectionType) for more type saf... | Neil | 2 | -32/+32 |
| 2020-07-16 | Make EncodingFamily an enum class for more type safety. | Neil | 3 | -6/+6 |
| 2020-07-16 | Add some const, constexpr. | Neil | 3 | -3/+3 |
| 2020-07-15 | Feature [feature-requests:1368]. Add BraceMatchNext API. | Zufu Liu | 3 | -4/+7 |
| 2020-07-11 | Removed calls that had no effect as drawing in indent guides uses FillRectangle | Neil | 1 | -2/+0 |
| 2020-07-11 | Treat DEL as a control character for determining block caret size. | Zufu Liu | 1 | -5/+6 |
| 2020-07-11 | Feature [feature-requests:1369]. Represent DEL control character 0x7f with DEL. | Zufu Liu | 1 | -0/+1 |
| 2020-06-17 | Simplify calls when known to be leaving a save point. | Neil | 1 | -2/+2 |
| 2020-06-17 | Feature [feature-requests:1361]. Allow caret width to be up to 20 pixels. | Neil | 1 | -1/+1 |
| 2020-06-12 | Bug [#2141]. Implement end of line annotations. | Prakash Sahni | 8 | -2/+194 |
| 2020-06-11 | Use noexcept where safe and maintainable. | Neil | 25 | -122/+122 |
| 2020-06-10 | Feature [feature-requests:1355]. Round instead of truncating for SCI_TEXTWIDTH. | Neil | 2 | -4/+4 |
| 2020-06-10 | Convert enum to enum class. Add noexcept and const. | Neil | 3 | -13/+13 |
| 2020-06-10 | Feature [feature-requests:1357]. Convert to switch. | Zufu Liu | 1 | -144/+195 |
| 2020-05-19 | Encapsulate common check for PS, LS, and NEL as UTF8IsMultibyteLineEnd. | Neil | 2 | -6/+10 |
| 2020-05-04 | Feature [feature-requests:1347]. Optimize large insertions by using a | Zufu Liu | 1 | -29/+122 |
| 2020-05-04 | Feature [feature-requests:1347]. Add methods to insert multiple partitions. | Neil | 1 | -0/+20 |
| 2020-05-03 | Feature [feature-requests:1347]. Add InsertLines method to PerLine interface and | Neil | 5 | -1/+50 |
| 2020-05-02 | Optimize LineVector by maintaining an activeIndices field to avoid calling | Neil | 1 | -30/+34 |
| 2020-05-02 | InsertEmpty now returns a pointer to the newly added elements to allow caller to | Neil | 1 | -2/+4 |
| 2020-05-02 | Feature [feature-requests:1349] Define CopyAllowLine only on Editor, not subc... | Neil | 1 | -1/+1 |
| 2020-05-01 | Make lambdas noexcept. | Zufu Liu | 4 | -11/+11 |
| 2020-05-01 | Mark Decoration methods noexcept where reasonable. | Neil | 2 | -34/+34 |
| 2020-04-17 | Arithmetic between enums is deprecated so use constexpr instead of enum or cast. | Neil | 1 | -7/+7 |
| 2020-04-10 | Move static functions into unnamed namespace and simplify line counting. | Neil | 1 | -21/+15 |
| 2020-04-10 | Run astyle indenter over file. | Zufu Liu | 1 | -11/+12 |
| 2020-04-10 | Feature [feature-requests:1346]. Convert long if-else block to switch. | Zufu Liu | 1 | -250/+324 |
| 2020-04-10 | Remove non-standard whitespace. | Zufu Liu | 1 | -5/+5 |
| 2020-04-08 | Simplify PerLine, remove casts, use noexcept, const, & constexpr where possible. | Neil | 4 | -60/+56 |
| 2020-04-08 | Feature [feature-requests:1344]. Add methods for iterating through the marker | Iain Clarke | 5 | -0/+44 |
| 2020-04-07 | Use noexcept and const where possible. | Neil | 2 | -10/+10 |
| 2020-04-05 | Implement access to the identifier of an ILexer5. This also stops unexpected | Neil | 1 | -2/+14 |
| 2020-04-05 | Perform autoscroll when mouse on pixel just below window. | Mitchell Foral | 1 | -1/+1 |
| 2020-03-31 | Pass argument as unique_ptr to show transfer of ownership. Add const and noex... | Neil | 3 | -6/+6 |
| 2020-03-27 | Avoid casts by returning size_t from GetExpanded. | Neil | 1 | -2/+2 |
| 2020-03-29 | Widen types to size_t to match change from int to position of CallTipSetHlt | Neil | 3 | -84/+96 |
| 2020-03-29 | Extract arrow drawing to function. Use noexcept, const and other minor changes | Neil | 2 | -49/+61 |
| 2020-03-26 | Fix spelling mistakes. | Neil | 8 | -14/+14 |
| 2020-03-25 | Replace static_cast with dynamic_cast for better type safety and adherence to | Neil | 1 | -1/+1 |
| 2020-03-24 | Use noexcept where possible. | Neil | 4 | -34/+38 |
| 2020-03-24 | Use noexcept where possible. | Neil | 2 | -21/+21 |
| 2020-03-23 | Use noexcept, const, and constexpr where possible. | Neil | 2 | -17/+17 |
| 2020-03-23 | Replace const with constexpr where possible. | Neil | 1 | -4/+4 |
| 2020-03-23 | perLineData is polymorphic so replace static_cast with dynamic_cast for better | Neil | 1 | -5/+5 |
| 2020-03-23 | Drop possibility of Sci_Position, Sci::Line, Sci::Position not being ptrdiff_t. | Neil | 1 | -8/+8 |