| Age | Commit message (Expand) | Author | Files | Lines |
| 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 |
| 2020-03-19 | Use noexcept in EditModel. | Neil | 2 | -6/+6 |
| 2020-03-19 | Minor improvements - noexcept, constexpr, cast removal. | Neil | 2 | -11/+9 |
| 2020-03-19 | Feature [feature-requests:1302] Simplify DrawCarets. | Zufu Liu | 1 | -5/+4 |
| 2020-03-19 | Feature [feature-requests:1302] Add IsCaretVisible to simplify DrawCarets. | Zufu Liu | 3 | -1/+6 |
| 2020-03-13 | Using constexpr in UniConversion and CaseConvert. | Neil | 3 | -6/+6 |
| 2020-02-29 | Add const and noexcept where they make sense. | Neil | 2 | -8/+8 |
| 2020-02-27 | Feature [feature-requests:497] Structure caret policy data and pass policy for | Neil | 2 | -71/+68 |
| 2020-02-21 | Feature [feature-requests:497] Automatically scroll while dragging text. | McLoo | 1 | -0/+14 |
| 2020-02-15 | Extract image conversion from RGBA to BGRA premultiplied into common function. | Neil | 2 | -0/+17 |