| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2022-10-19 | Fix noexcept warnings from recent changes. | Neil | 1 | -2/+2 | |
| 2022-10-19 | Hoist shared code from GetTextRange and GetTextRangeFull. | Neil | 1 | -29/+20 | |
| 2022-10-19 | Feature [feature-requests:#1455] Implement GetStyledTextFull as a 64-bit safe | Neil | 1 | -12/+21 | |
| version of GetStyledText. | |||||
| 2022-10-04 | Feature [feature-requests:#1453] Added SCI_STYLESETINVISIBLEREPRESENTATION to | Ferdinand Oeinck | 1 | -0/+17 | |
| make it easier to edit around invisible text. This also allows representing long lexemes with a single character to provide a summarized view. | |||||
| 2022-09-30 | Bug [#2357]. Make SCI_LINESCROLL more accurate when width of space not integer. | Zufu Liu | 1 | -1/+1 | |
| 2022-09-12 | Remove NotifyLexerChanged notification from DocWatcher. | Neil | 1 | -3/+0 | |
| This is a private interface but could be used by independent platform layers and was exposed by ScintillaDocument in the Qt implementation of ScintillaEdit. | |||||
| 2022-08-13 | Move ModifierFlags to ScintillaTypes.h as it is globally useful and not tied | Neil | 1 | -9/+0 | |
| to Editor. | |||||
| 2022-08-13 | Avoid access to window IDs (which are platform-dependent) in code that doesn't | Neil | 1 | -7/+11 | |
| need them. | |||||
| 2022-08-13 | Reduce warnings with noexcept, fewer casts, and other minor changes. | Neil | 1 | -9/+9 | |
| 2022-07-30 | Bug [#2340] Add option to contract every level for SCI_FOLDALL called | Zufu Liu | 1 | -10/+19 | |
| SC_FOLDACTION_CONTRACT_EVERY_LEVEL. Avoid processing lines multiple times. | |||||
| 2022-08-01 | Avoid some warnings from Code Analysis. | Neil | 1 | -3/+1 | |
| 2022-07-31 | Added change history which can display document changes (modified, saved, ...) | Neil | 1 | -0/+14 | |
| in the margin or in the text. | |||||
| 2022-07-31 | Move main access to active marker bit set to model. This will allow merging in | Neil | 1 | -2/+2 | |
| change history markers and simplifies calls. | |||||
| 2022-07-24 | Bug [#2340] Simplify expand all folds. Speed up expand line a little. | Zufu Liu | 1 | -6/+7 | |
| 2022-07-22 | Move EditView::hideSelection to (inverted) SelectionAppearance::visible so that | Neil | 1 | -1/+5 | |
| it can differ between screen and print. Add GetSelectionHidden to allow testing of HideSelection. | |||||
| 2022-05-17 | Duplicate APIs to support 64-bit document positions on Win32: | Neil | 1 | -11/+74 | |
| SCI_GETTEXTRANGEFULL, SCI_FINDTEXTFULL, and SCI_FORMATRANGEFULL. | |||||
| 2022-05-10 | Support more than 2G lines with FoldAll. | Neil | 1 | -2/+2 | |
| 2022-05-10 | Improve performance of SCI_FOLDALL(SC_FOLDACTION_EXPAND). | Neil | 1 | -3/+4 | |
| 2022-04-08 | Feature [feature-requests:#1389] Initialize CaseFolderTable to ASCII so | Neil | 1 | -9/+1 | |
| subclasses do not need to call StandardASCII. Avoid some lint warnings. | |||||
| 2022-04-07 | Bug [#2322] Fix partial updates and non-responsive scroll bars on Xorg. | Neil Hodgson | 1 | -1/+6 | |
| Also fixes bugs [#2196] and [#2312]. | |||||
| 2022-03-15 | Feature [feature-requests:#1431] Add SCI_GETSTYLEINDEXAT API to return styles | Neil | 1 | -0/+6 | |
| over 127 as positive integers. | |||||
| 2022-03-12 | Feature [feature-requests:#1432] Move some surface creation out of headers and | Neil | 1 | -0/+20 | |
| make virtual to allow customisation by platform layers. | |||||
| 2022-03-05 | Feature [feature-requests:#1432] Simplify setting surface modes with | Zufu Liu | 1 | -0/+1 | |
| EditModel::CurrentSurfaceMode. | |||||
| 2022-03-05 | Feature [feature-requests:#1432] Remove redundant calls to DropGraphics. | Zufu Liu | 1 | -1/+0 | |
| InvalidateStyleRedraw calls DropGraphics and the unique_ptr destructors will ensure that the pixmaps are destroyed when Editor is destroyed. | |||||
| 2022-02-02 | Feature [feature-requests:#1427] Add multithreaded layout which improves | Neil | 1 | -0/+7 | |
| performance significantly for very wide lines. | |||||
| 2022-01-22 | Feature [feature-requests:#1422] Minor improvements to line layout and wrapping. | Zufu Liu | 1 | -9/+15 | |
| May avoid some small costs and be clearer. | |||||
| 2022-01-20 | Hide details of PositionCache. | Neil | 1 | -3/+3 | |
| Move class declarations of PositionCache and PositionCacheEntry into cxx file and only define IPositionCache interface and CreatePositionCache factory function in header. | |||||
| 2021-12-16 | Feature [feature-requests:#1422] Fix scrollbar with annotations and wrapping. | Zufu Liu | 1 | -0/+2 | |
| 2021-11-12 | Change SCI_GETTEXT, SCI_GETSELTEXT, and SCI_GETCURLINE to be more consistent | Neil | 1 | -15/+8 | |
| with other APIs with respect to buffer lengths. | |||||
| 2021-11-10 | Call ConstCharPtrFromSPtr when result should be const. | Neil | 1 | -23/+23 | |
| This limits use of the more dangerous form CharPtrFromSPtr. | |||||
| 2021-10-22 | Add CARETSTYLE_CURSES to draw more than 1 caret on curses terminal. | Mitchell Foral | 1 | -1/+1 | |
| 2021-10-12 | Feature [feature-requests:#1416] Use range for. | Neil | 1 | -3/+3 | |
| 2021-10-05 | Feature [feature-requests:#1417] Consolidate character classification functions | Neil | 1 | -2/+2 | |
| in CharacterType.h, merging duplicate functions, removing unused functions and stadardizing names. | |||||
| 2021-09-28 | Widen styleNumber in PositionCacheEntry from 8 to 16 bits to allow styles | Neil | 1 | -0/+1 | |
| larger than 255 to be represented. Before this, it may have been possible but extremely rare for a cache entry to wrongly match a styled lexeme and produce incorrect layout. Using uint16_t from cstdint instead of a bit field as tools perform more checking on that. | |||||
| 2021-09-15 | Avoid some type warnings | Neil | 1 | -1/+1 | |
| 2021-08-27 | Feature [feature-requests:#841] Remove hotspot from LineLayout and rely on | Zufu Liu | 1 | -4/+0 | |
| reference to model. | |||||
| 2021-08-25 | Allow SCI_HIDELINES to hide the first line or all lines. | Neil | 1 | -2/+1 | |
| 2021-08-24 | Feature [feature-requests:#841] SCI_SETCARETLINEHIGHLIGHTSUBLINE enables | Zufu Liu | 1 | -0/+7 | |
| highlighting just the subline with the caret when wrapping is on. | |||||
| 2021-08-23 | Fix change set 8902 which could cause caret to stop blinking. | Neil | 1 | -3/+3 | |
| Occurred when a redraw was requested during a paint. | |||||
| 2021-08-14 | Optimize by reducing invalidation as this can be costly. | Neil | 1 | -0/+18 | |
| If all of the text area or margin area is invalidated then remember this and don't do any more invalidations for that area until the window is painted. This reduced the time taken to replace each \r\n with \n\n in very large files by a factor of 3. | |||||
| 2021-07-31 | Implement StyleSetCheckMonospaced. | Neil | 1 | -1/+8 | |
| 2021-07-15 | Feature [feature-requests:#1370] Implement SCI_ALLOCATELINES to allocate indices | Zufu Liu | 1 | -0/+4 | |
| to hold some number of lines. This is an optimization that can decrease reallocation overhead. | |||||
| 2021-07-03 | Feature [feature-requests:#1408] Merge branches for setting representations for | Zufu Liu | 1 | -14/+7 | |
| invalid single bytes in multi-byte encodings. | |||||
| 2021-07-03 | Feature [feature-requests:#1408] Avoid sprintf for hexadecimal character blobs. | Zufu Liu | 1 | -4/+4 | |
| 2021-06-10 | Rename SCI_PASTERECTANGULAR to SCI_REPLACERECTANGULAR as it is inserting text | Neil | 1 | -1/+1 | |
| provided as an argument instead of from the system clipboard. | |||||
| 2021-06-09 | Reduce casts by defining methods for common conversions. | Neil | 1 | -161/+157 | |
| 2021-06-09 | Add SCI_PASTERECTANGULAR to insert text like a rectangular paste. | Mitchell Foral | 1 | -0/+9 | |
| 2021-06-03 | Add APIs for setting appearance (traditional blob or plain text) and colour of | Neil | 1 | -2/+31 | |
| representations and support setting a representation for the "\r\n" line end sequence. | |||||
| 2021-06-04 | Bug [#2260]. Fix bug with SCI_GETLASTCHILD when lParam is -1. | Zufu Liu | 1 | -2/+2 | |
| Fixed cast on SCI_FOLDCHILDREN to use correct type. | |||||
| 2021-05-30 | Fix GetFontQuality. Simplify code that calls FlagSet. | Neil | 1 | -15/+15 | |
