| Age | Commit message (Expand) | Author | Files | Lines |
| 2021-04-05 | Extract unnamed caching enum as LineLayoutCache::Cache and change to enum class. | Neil | 1 | -1/+1 |
| 2021-04-05 | Change IndentView, WhiteSpaceVisibility, and TabDrawMode to enum class. | Neil | 1 | -11/+11 |
| 2021-04-01 | Changed parameters for DrawTabArrow and DrawTabArrowFn to allow additional | Neil | 1 | -8/+7 |
| 2021-03-29 | Add SCI_SETELEMENTCOLOUR and related APIs to change colours of visible elements. | Neil | 1 | -0/+1 |
| 2021-03-28 | Add shapes with curved and rounded ends to EOL annotations as EOLANNOTATION_*. | Neil | 1 | -16/+73 |
| 2021-03-26 | Minor changes: const, constexpr, and noexcept. | Neil | 1 | -2/+2 |
| 2021-03-22 | Use XYPOSITION for xStart parameter as it is only passed as XYPOSITION. | Neil | 1 | -2/+2 |
| 2021-03-22 | Replace multiple calls when drawing boxes with Surface::RectangleFrame. | Neil | 1 | -32/+9 |
| 2021-03-21 | Update DrawTabArrow with new Surface calls so it can draw a thicker translucent | Neil | 1 | -16/+25 |
| 2021-03-20 | Replace FillRectangle with FillRectangleAligned as FillRectangle will stop | Neil | 1 | -50/+49 |
| 2021-03-20 | Use Surface::AllocatePixMap instead of changing an existing surface with | Neil | 1 | -26/+8 |
| 2021-03-19 | Add an explicit FlushDrawing method to Surface that should be called after | Neil | 1 | -0/+3 |
| 2021-03-19 | Implement PopClip to allow local clipping. | Neil | 1 | -1/+6 |
| 2021-03-19 | Switch enum to enum class. | Neil | 1 | -50/+51 |
| 2021-03-18 | Make Surface::Release and callers (where possible) noexcept. | Neil | 1 | -1/+1 |
| 2021-03-18 | Use unique_ptr for Surface::Allocate to show transfer of ownership. | Neil | 1 | -3/+3 |
| 2021-03-18 | std::optional is a basic vocabulary type that may be used widely so include | Neil | 1 | -0/+1 |
| 2021-03-18 | Move assert and debug trace functions into their own header Debugging.h. | Neil | 1 | -0/+1 |
| 2021-03-17 | Change Font to an interface and stop using FontID. Fonts are shared and | Neil | 1 | -15/+15 |
| 2021-03-17 | Extract geometry and colour definitions from Platform.h into src/Geometry.h. | Neil | 1 | -0/+1 |
| 2021-02-02 | Bug [#2231]. Inconsistent behaviour in navigation on a line containing Japanese | cshnik | 1 | -1/+1 |
| 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-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-07-16 | Make WrapMode an enum class for more type safety. | Neil | 1 | -4/+4 |
| 2020-07-16 | Rename validLevel to ValidLevel and make an enum class. | Neil | 1 | -8/+8 |
| 2020-07-16 | Add some const, constexpr. | Neil | 1 | -1/+1 |
| 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-06-12 | Bug [#2141]. Implement end of line annotations. | Prakash Sahni | 1 | -1/+93 |
| 2020-06-11 | Use noexcept where safe and maintainable. | Neil | 1 | -3/+3 |
| 2020-06-10 | Convert enum to enum class. Add noexcept and const. | Neil | 1 | -6/+6 |
| 2020-03-26 | Fix spelling mistakes. | Neil | 1 | -1/+1 |
| 2020-03-19 | Minor improvements - noexcept, constexpr, cast removal. | Neil | 1 | -10/+8 |
| 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 | 1 | -1/+1 |
| 2019-06-21 | Bug [#2106]. Place line caret in correct location for line caret with block OVR. | Neil | 1 | -1/+3 |
| 2019-05-11 | Feature [feature-requests:#1283]. Standardise spelling - "color" -> "colour". | Neil | 1 | -1/+1 |
| 2019-04-26 | Feature [feature-requests:#1238]. Simplify case forcing with CaseForce function | Neil | 1 | -29/+35 |
| 2019-04-26 | Feature [feature-requests:#1238]. Simplify camel case forcing by checking only | Neil | 1 | -4/+4 |
| 2019-04-25 | Bug [#1238]. Removed redundant loop. | Zufu Liu | 1 | -4/+0 |
| 2019-04-05 | Feature [feature-requests:#1272]. Add API to set default fold display text. | Neil | 1 | -3/+4 |
| 2019-04-02 | Removed variable which duplicated meaning of earlier variable. | Neil | 1 | -3/+2 |
| 2019-03-29 | Include "CharacterCategory.h" in all files that include "Document.h" as it will | Neil | 1 | -0/+1 |
| 2019-03-25 | Use generic versions of ceil, floor, round, lround, trunc from <cmath>. | Neil | 1 | -9/+9 |
| 2019-03-03 | Use noexcept where reasonable. | Neil | 1 | -8/+8 |
| 2019-02-05 | Feature [feature-requests:#1217]. Change API so block just for overstrike. | Zufu Liu | 1 | -5/+6 |
| 2019-02-02 | Feature [feature-requests:#1217]. Implement CARETSTYLE_BLOCK_ALWAYS. | Zufu Liu | 1 | -3/+3 |
| 2019-01-13 | Replace the only use of a function from <cctype> with a Scintilla function. | Neil | 1 | -1/+0 |