| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2020-06-19 | Reverted experimental Lexilla and SCI_SETILEXER support. | mitchell | 4 | -52/+36 | |
| When testing, it works when compiled with debug symbols enabled, but crashes without them. It doesn't seem worth maintaining. | |||||
| 2020-06-17 | Backport: Simplify calls when known to be leaving a save point. | Neil | 1 | -2/+2 | |
| Backport of changeset 8309:adedefb346ef. | |||||
| 2020-06-17 | Backport: Feature [feature-requests:1361]. Allow caret width to be up to 20 ↵ | Neil | 1 | -1/+1 | |
| pixels. Backport of changeset 8308:9f3c5a4c4b52. | |||||
| 2020-06-12 | Backport: Bug [#2141]. Implement end of line annotations. | Prakash Sahni | 8 | -2/+192 | |
| Backport of changeset 8306:1b383adfdf71. | |||||
| 2020-06-11 | Backport: Use noexcept where safe and maintainable. | Neil | 25 | -118/+119 | |
| Backport of changeset 8300:266c8247814e. | |||||
| 2020-06-10 | Backport: Feature [feature-requests:1355]. Round instead of truncating for ↵ | Neil | 2 | -3/+3 | |
| SCI_TEXTWIDTH. Backport of changeset 8297:3665e2c20cd4. | |||||
| 2020-06-10 | Backport: Convert enum to enum class. Add noexcept and const. | Neil | 3 | -13/+13 | |
| Backport of changeset 8296:d8dc184c713c. | |||||
| 2020-06-10 | Backport: Feature [feature-requests:1357]. Convert to switch. | Zufu Liu | 1 | -144/+195 | |
| Backport of changeset 8295:1a3306c0b2b3. | |||||
| 2020-05-19 | Backport: Encapsulate common check for PS, LS, and NEL as ↵ | Neil | 2 | -6/+10 | |
| UTF8IsMultibyteLineEnd. Avoids construction of temporary array. Backport of changeset 8242:0a852c639c21. | |||||
| 2020-06-17 | Backport: Feature [feature-requests:1347]. Optimize large insertions by ↵ | mitchell | 1 | -30/+122 | |
| using a table-driven line end discovery algorithm and performing line insertions in batches. Backport of changeset 8229:c88f8cdede65, but with a "reinterpret_cast<>" in place of "if constexpr()". This shouldn't be an issue, but if so, it will be when largeDocument is true. | |||||
| 2020-05-04 | Backport: Feature [feature-requests:1347]. Add methods to insert multiple ↵ | Neil | 1 | -0/+20 | |
| partitions. Backport of changeset 8228:753e94011b20. | |||||
| 2020-05-03 | Backport: Feature [feature-requests:1347]. Add InsertLines method to PerLine ↵ | Neil | 5 | -1/+50 | |
| interface and all implementations. This will allow insertion of lines in batches in a future change set. Added tests for PerLine implementations. Backport of changeset 8227:9fc611fc6848. | |||||
| 2020-05-02 | Backport: Optimize LineVector by maintaining an activeIndices field to avoid ↵ | Neil | 1 | -30/+34 | |
| calling LineStartIndex::Active. Backport of changeset 8226:8bc17f710440. | |||||
| 2020-05-02 | Backport: InsertEmpty now returns a pointer to the newly added elements to ↵ | Neil | 1 | -2/+4 | |
| allow caller to efficiently set those elements. Backport of changeset 8225:de663ebc1bc6. | |||||
| 2020-05-02 | Backport: Feature [feature-requests:1349] Define CopyAllowLine only on ↵ | Neil | 1 | -1/+1 | |
| Editor, not subclass. Backport of changeset 8223:a81895285b46. | |||||
| 2020-05-01 | Backport: Make lambdas noexcept. | Zufu Liu | 3 | -10/+10 | |
| Backport of changeset 8222:b11c7c0d7978. | |||||
| 2020-05-01 | Backport: Mark Decoration methods noexcept where reasonable. | Neil | 2 | -34/+34 | |
| Backport of changeset 8221:ffc4a50e3101. | |||||
| 2020-06-02 | Fixed crashes on Win32 related to previous backport. | mitchell | 1 | -12/+0 | |
| 2020-06-02 | Fixed build error on Windows with previous backport. | mitchell | 1 | -2/+0 | |
| 2019-12-31 | Backport: Implement SCI_SETILEXER. | Neil | 2 | -20/+34 | |
| Backport of changeset 7871:ff54e1fc74f3, but with the ability to distinguish between ILexer and ILexer5 interfaces. | |||||
| 2020-06-02 | Initial, experimental support for upstream ILexer5/lexilla lexers. | mitchell | 3 | -14/+30 | |
| 2020-04-17 | Backport: Arithmetic between enums is deprecated so use constexpr instead of ↵ | Neil | 1 | -7/+7 | |
| enum or cast. Added constexpr where reasonable. Backport of changeset 8151:5f70c1eb371b. | |||||
| 2020-04-10 | Backport: Move static functions into unnamed namespace and simplify line ↵ | Neil | 1 | -20/+22 | |
| counting. Backport of changeset 8141:00d61c7df678. | |||||
| 2020-04-10 | Backport: Run astyle indenter over file. | Zufu Liu | 1 | -11/+12 | |
| Backport of changeset 8139:b15e8d7fed18. | |||||
| 2020-04-24 | Backport: Feature [feature-requests:1346]. Convert long if-else block to switch. | mitchell | 1 | -251/+325 | |
| Backport of changeset 8138:9f24b2af91f8. | |||||
| 2020-04-10 | Backport: Remove non-standard whitespace. | Zufu Liu | 1 | -5/+5 | |
| Backport of changeset 8137:a7bfb6d4756c. | |||||
| 2020-04-08 | Backport: Simplify PerLine, remove casts, use noexcept, const, & constexpr ↵ | Neil | 4 | -60/+56 | |
| where possible. Backport of changeset 8130:55de9045370a. | |||||
| 2020-04-08 | Backport: Feature [feature-requests:1344]. Add methods for iterating through ↵ | Iain Clarke | 5 | -0/+44 | |
| the marker handles and marker numbers on a line. Backport of changeset 8129:665c31051e3c. | |||||
| 2020-04-07 | Backport: Use noexcept and const where possible. | Neil | 2 | -10/+10 | |
| Backport of changeset 8128:e56cf725d51c. | |||||
| 2020-04-05 | Backport: Perform autoscroll when mouse on pixel just below window. | Mitchell Foral | 1 | -1/+1 | |
| This mostly helps the curses platform where a line of text is a single 'pixel'. Backport of changeset 8109:14e30b7917dd. | |||||
| 2020-04-05 | Backport: Pass argument as unique_ptr to show transfer of ownership. Add ↵ | mitchell | 3 | -6/+6 | |
| const and noexcept. Backport of changeset 8106:f26e186e80a9. | |||||
| 2020-03-27 | Backport: Avoid casts by returning size_t from GetExpanded. | Neil | 1 | -2/+2 | |
| Backport of changeset 8099:2228fb724ce7. | |||||
| 2020-04-05 | Backport: Widen types to size_t to match change from int to position of ↵ | mitchell | 3 | -83/+97 | |
| CallTipSetHlt in Scintilla.iface. Backport of changeset 8098:228c9f9aa839. | |||||
| 2020-03-29 | Backport: Extract arrow drawing to function. Use noexcept, const and other ↵ | Neil | 2 | -48/+60 | |
| minor changes to fix warnings before making widening types in the next change set. Backport of changeset 8097:06cbbf702640. | |||||
| 2020-03-26 | Backport: Fix spelling mistakes. | Neil | 8 | -14/+14 | |
| Backport of changeset 8028:78a688809e75. | |||||
| 2020-03-25 | Backport: Replace static_cast with dynamic_cast for better type safety and ↵ | Neil | 1 | -1/+1 | |
| adherence to C++ Core Guidelines C.146. Backport of changeset 8024:5893c2efc0d8. | |||||
| 2020-03-24 | Backport: Use noexcept where possible. | Neil | 4 | -34/+38 | |
| Backport of changeset 8023:7e614e47074d. | |||||
| 2020-03-24 | Backport: Use noexcept where possible. | Neil | 2 | -21/+21 | |
| Backport of changeset 8022:658a23dc7b4e. | |||||
| 2020-03-23 | Backport: Use noexcept, const, and constexpr where possible. | Neil | 2 | -17/+17 | |
| Backport of changeset 8021:0dbef7a9205f. | |||||
| 2020-03-23 | Backport: Replace const with constexpr where possible. | Neil | 1 | -4/+4 | |
| Backport of changeset 8020:3f5593341a23. | |||||
| 2020-03-23 | Backport: perLineData is polymorphic so replace static_cast with ↵ | Neil | 1 | -5/+5 | |
| dynamic_cast for better type safety and adherence to C++ Core Guidelines C.146. Backport of changeset 8019:91a3db714f60. | |||||
| 2020-03-23 | Backport: Drop possibility of Sci_Position, Sci::Line, Sci::Position not ↵ | Neil | 1 | -8/+8 | |
| being ptrdiff_t. This reduces casting. Backport of changeset 8018:8bc54a095c2f. | |||||
| 2020-03-19 | Backport: Use noexcept in EditModel. | Neil | 2 | -2/+2 | |
| Backport of changeset 8013:77ef8e068676. | |||||
| 2020-03-19 | Backport: Minor improvements - noexcept, constexpr, cast removal. | Neil | 2 | -10/+8 | |
| Backport of changeset 8012:48f82fb06505. | |||||
| 2020-03-19 | Backport: Feature [feature-requests:1302] Simplify DrawCarets. | Zufu Liu | 1 | -5/+4 | |
| Backport of changeset 8011:bf8531a046ff. | |||||
| 2020-03-19 | Backport: Feature [feature-requests:1302] Add IsCaretVisible to simplify ↵ | Zufu Liu | 3 | -1/+6 | |
| DrawCarets. Backport of changeset 8010:4b365fa302a2. | |||||
| 2020-03-13 | Backport: Using constexpr in UniConversion and CaseConvert. | Neil | 3 | -6/+6 | |
| Backport of changeset 8004:7052c60ce1b2. | |||||
| 2020-02-29 | Backport: Add const and noexcept where they make sense. | Neil | 2 | -8/+8 | |
| Backport of changeset 7991:d7d83db0457a. | |||||
| 2020-02-27 | Backport: Feature [feature-requests:497] Structure caret policy data and ↵ | Neil | 2 | -71/+68 | |
| pass policy for dragging instead of manipulating global state.. Backport of changeset 7990:9716682f5120. | |||||
| 2020-02-21 | Backport: Feature [feature-requests:497] Automatically scroll while dragging ↵ | McLoo | 1 | -0/+14 | |
| text. Added automatic scrolling when text dragged near edge of window. Backport of changeset 7989:e98f6731bd39. | |||||
