Age | Commit message (Expand) | Author | Files | Lines |
2025-07-03 | Feature [feature-requests:#1563]. Move main range in selection serialized form.master | Zufu Liu | 2 | -29/+31 |
2025-06-26 | Fix some typos and indentation. | Neil | 1 | -1/+1 |
2025-06-17 | Feature [feature-requests:#1557]. Fix finding sub-line of position in | Zufu Liu | 1 | -10/+8 |
2025-06-17 | Feature [feature-requests:#1557]. Shorten expression. | Zufu Liu | 1 | -1/+1 |
2025-06-01 | Add SCI_SCROLLVERTICAL API. | Neil | 4 | -4/+46 |
2025-05-29 | Recreate all pixmaps if any null as this may better handle cases where some | Neil | 3 | -10/+6 |
2025-05-28 | Bug [#2481]. Refresh pixmaps later inside Paint so non-null when dereferenced in | Neil | 1 | -3/+2 |
2025-05-25 | Feature [feature-requests:#1557]. Simplify LineLayout deallocation. | Zufu Liu | 2 | -25/+3 |
2025-05-24 | Remove line end space. | Zufu Liu | 6 | -6/+6 |
2025-05-24 | Change the line wrap memory growth strategy to handle huge documents better. | Zufu Liu | 1 | -2/+2 |
2025-05-20 | Feature [feature-requests:#1557]. Simplify line wrapping. | Zufu Liu | 1 | -15/+7 |
2025-05-18 | Modify wrapping fix to be more efficient. | Zufu Liu | 2 | -7/+4 |
2025-05-16 | Fix wrapping bug for UTF-8 where \r\n could wrap between the characters. | Neil | 1 | -0/+6 |
2025-05-16 | Silence warning with intermediate constant. | Neil | 1 | -1/+2 |
2025-05-15 | Remove else after return when that clarifies code. | Neil | 1 | -104/+90 |
2025-05-12 | Add SCI_AUTOC{G,S}ETIMAGESCALE and implement for Qt and GTK. | orbitalquark | 4 | -0/+11 |
2025-05-03 | Use noexcept, emplace_back, avoid a cast, and simplify code. | Neil | 2 | -9/+10 |
2025-05-03 | Remove else after return when that clarifies code. | Neil | 1 | -61/+42 |
2025-04-22 | Silence warnings for else-after, no default in switch, default destructor, | Neil | 1 | -26/+18 |
2025-04-22 | Move common IME code from platform layers to ScintillaBase. | Neil | 2 | -0/+32 |
2025-04-18 | Control restoring vertical scroll position for undo with | Neil | 2 | -4/+6 |
2025-04-17 | Tweak SC_MARK_BAR to be slightly wider. | Neil | 1 | -1/+1 |
2025-04-10 | Avoid 'magic' number with constexpr and add comments. | Neil | 1 | -8/+12 |
2025-04-08 | Simplify code and fix impossible INTEGER_OVERFLOW warning from Coverity. | Neil | 1 | -4/+4 |
2025-04-08 | Fix impossible INTEGER_OVERFLOW warning from Coverity. | Neil | 1 | -1/+1 |
2025-04-08 | Fix COPY_INSTEAD_OF_MOVE performance warning from Coverity. | Neil | 1 | -1/+1 |
2025-04-08 | Silence warning. | Neil | 1 | -2/+1 |
2025-04-03 | Turn on type conversion warnings for GCC and fix them. | Neil | 9 | -27/+32 |
2025-04-03 | Silence 'magic' number clang-tidy warning where there is intense use of literal | Neil | 4 | -0/+28 |
2025-03-27 | Optimize case-insensitive DBCS search to be around 5 times faster by using 64K | Neil | 2 | -0/+82 |
2025-03-27 | Use constant definitions to avoid warnings. | Neil | 2 | -11/+17 |
2025-03-09 | Avoid warnings by replacing &[0] with .data(), adding [[nodiscard]], replacing | Neil | 2 | -22/+20 |
2025-03-08 | Define constants for UTF-8 and UTF-16 implementation for clarity. | Neil | 2 | -62/+100 |
2025-03-06 | Move static functions and variables into unnamed namespace and use constexpr. | Neil | 2 | -37/+48 |
2025-03-03 | Feature [feature-requests:#1417]. Improve UTF-8 segmentation for some control | Neil | 1 | -2/+8 |
2025-02-25 | Bug [#2463]. Disallow case changes if the range contains protected text | Joachim Mairboeck | 1 | -1/+1 |
2025-02-19 | Use ComPtr for render targets of SurfaceD2D. | Neil | 1 | -2/+2 |
2025-02-18 | Minor warnings silenced. No return value from void functions, catch the | Neil | 1 | -7/+10 |
2025-02-18 | Avoid type error from some compilers from returning braced values like | Neil | 1 | -16/+8 |
2025-02-15 | Minor changes to reduce warnings from Clang-Tidy. | Neil | 1 | -28/+21 |
2025-02-15 | Fix the previous change to prioritise breaking at style-change and spaces (when | Neil | 1 | -11/+16 |
2025-02-14 | For wrapping, try to break lines without separating letters from modifiers. | Neil | 1 | -0/+7 |
2025-02-14 | Implement LastCharacter to return the last character or character fragment in a | Neil | 2 | -4/+27 |
2025-02-14 | Feature [feature-requests:#1417]. Fix some UTF-8 segmentation bugs by | Neil | 1 | -12/+14 |
2025-02-07 | Add vertical scroll position into undo selection history unconditionally. | Neil | 3 | -14/+21 |
2025-02-07 | Use operator== inside <= and >= to shorten code. | Neil | 1 | -14/+8 |
2025-02-06 | Feature [feature-requests:#1540]. Avoid memory leaks caused by addition of | Neil | 1 | -1/+4 |
2025-02-05 | Use new SelectionSegment constructor and SelectionRange::AsSegment to simplify | Neil | 3 | -12/+8 |
2025-02-05 | Simplify SelectionRange::Intersect and add SelectionRange constructor from | Neil | 2 | -14/+18 |
2025-02-04 | Also delete the local reference to model state when history disabled. | Neil | 1 | -0/+1 |