| Age | Commit message (Expand) | Author | Files | Lines |
| 2020-09-18 | Fix building with Xcode 12 by defining move constructors for FontAlias, Style, | Neil | 3 | -4/+9 |
| 2020-08-27 | Bug [#2197]. Avoid rewrap when checkTextAndStyle finds unchanged from cache. | Zufu Liu | 1 | -5/+4 |
| 2020-08-26 | Bug [#2199]. Fixed bug where a hovered INDIC_TEXTFORE indicator was not applying | uhf7 | 1 | -3/+6 |
| 2020-08-25 | Move SCI_MULTIEDGEADDLINE impleemntation into ViewStyle as it is too complex for | Neil | 3 | -12/+17 |
| 2020-08-25 | Feature [feature-requests:1350]. Add SCI_GETMULTIEDGECOLUMN. | Derek Brown | 1 | -4/+21 |
| 2020-08-21 | Reduce code and variable lifetime. | Zufu Liu | 1 | -6/+3 |
| 2020-08-21 | Bug [#2197]. Fixed bug where layout caching was ineffective. | Neil | 1 | -1/+2 |
| 2020-08-21 | Bounds checks for setting annotation style. | Mitchell Foral | 1 | -8/+12 |
| 2020-08-11 | Fixed bug where gradient indicators were not showing hovered appearance. | Neil | 1 | -2/+2 |
| 2020-08-11 | Bug [#2193]. Fixed bug where hovered indicator was not returning to non-hover | uhf7 | 1 | -0/+1 |
| 2020-08-09 | Use [[fallthrough]] to reduce warnings from Visual Studio static analysis. | Neil | 1 | -1/+1 |
| 2020-08-04 | Bounds checking for SetSelectionN* APIs. | Mitchell Foral | 1 | -0/+3 |
| 2020-08-03 | Use const. Use separate lines for variable declarations. | Neil | 1 | -3/+5 |
| 2020-08-03 | Bug [#2193]. Fixed bug where hovered indicator was not returning to non-hover | uhf7 | 1 | -0/+2 |
| 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 |